Skip to content

Instantly share code, notes, and snippets.

@sjordan1975
sjordan1975 / RetryTest.php
Created November 9, 2020 10:39 — forked from orottier/RetryTest.php
Retry function for PHP with exponential backoff
<?php
class RetryTest extends TestCase
{
public function setUp()
{
parent::setUp();
// abuse superglobal to keep track of state
$_GET['a'] = 0;
}