helpers.php 267 B

1234567
  1. <?php
  2. if(!function_exists('backoff')) {
  3. function backoff($callback, $maxAttempts = null, $strategy = null, $waitCap = null, $useJitter = null)
  4. {
  5. return (new \STS\Backoff\Backoff($maxAttempts, $strategy, $waitCap, $useJitter))->run($callback);
  6. }
  7. }