namespace Guzzle\Plugin\Backoff;
use Guzzle\Http\Message\RequestInterface;
use Guzzle\Http\Message\Response;
use Guzzle\Http\Exception\HttpException;
* Strategy used to retry HTTP requests when the response's reason phrase matches one of the registered phrases.
class ReasonPhraseBackoffStrategy extends AbstractErrorCodeBackoffStrategy
public function makesDecision()
protected function getDelay($retries, RequestInterface $request, Response $response = null, HttpException $e = null)
return isset($this->errorCodes[$response->getReasonPhrase()]) ? true : null;