diff --git a/lib/RetailCrm/Http/Client.php b/lib/RetailCrm/Http/Client.php index c0814c4..5a3d50d 100644 --- a/lib/RetailCrm/Http/Client.php +++ b/lib/RetailCrm/Http/Client.php @@ -15,7 +15,7 @@ class Client protected $url; protected $defaultParameters; - public $retry; + protected $retry; public function __construct($url, array $defaultParameters = array()) { @@ -111,4 +111,9 @@ class Client return new ApiResponse($statusCode, $responseBody); } + + public function getRetry() + { + return $this->retry; + } }