1
0
mirror of synced 2024-11-25 14:56:07 +03:00

get retry protected

This commit is contained in:
Alex Lushpai 2015-12-23 10:23:10 +03:00
parent 6ee6452748
commit 700b87fba0

View File

@ -15,7 +15,7 @@ class Client
protected $url; protected $url;
protected $defaultParameters; protected $defaultParameters;
public $retry; protected $retry;
public function __construct($url, array $defaultParameters = array()) public function __construct($url, array $defaultParameters = array())
{ {
@ -111,4 +111,9 @@ class Client
return new ApiResponse($statusCode, $responseBody); return new ApiResponse($statusCode, $responseBody);
} }
public function getRetry()
{
return $this->retry;
}
} }