From dd912fe328b760444dda9772222650bf5f35817f Mon Sep 17 00:00:00 2001 From: sanchescom Date: Mon, 24 Jun 2019 21:01:01 +0300 Subject: [PATCH] protected properties: services and client --- src/ServiceFactory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ServiceFactory.php b/src/ServiceFactory.php index 3723ee1..c4c29e8 100644 --- a/src/ServiceFactory.php +++ b/src/ServiceFactory.php @@ -6,14 +6,14 @@ class ServiceFactory { - private static $services = [ + protected static $services = [ 'sys' => 'Jippi\Vault\Services\Sys', 'data' => 'Jippi\Vault\Services\Data', 'auth/token' => 'Jippi\Vault\Services\Auth\Token', 'auth/approle'=>'Jippi\Vault\Services\Auth\AppRole' ]; - private $client; + protected $client; public function __construct(array $options = array(), LoggerInterface $logger = null, GuzzleClient $guzzleClient = null) {