Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Plugin
/
Backoff
:
ReasonPhraseBackoffStrategy.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php 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() { return true; } protected function getDelay($retries, RequestInterface $request, Response $response = null, HttpException $e = null) { if ($response) { return isset($this->errorCodes[$response->getReasonPhrase()]) ? true : null; } } }