diff --git a/src/Omniphx/Forrest/Client.php b/src/Omniphx/Forrest/Client.php index db03854..a943188 100644 --- a/src/Omniphx/Forrest/Client.php +++ b/src/Omniphx/Forrest/Client.php @@ -118,6 +118,12 @@ abstract class Client implements AuthenticationInterface */ protected $credentials; + /** @var \Omniphx\Forrest\Interfaces\RepositoryInterface */ + protected $instanceURLRepo; + + /** @var \Omniphx\Forrest\Interfaces\RepositoryInterface */ + protected $refreshTokenRepo; + /** * Request options. * diff --git a/src/Omniphx/Forrest/Providers/Laravel/LaravelCache.php b/src/Omniphx/Forrest/Providers/Laravel/LaravelCache.php index 1162076..cde4054 100644 --- a/src/Omniphx/Forrest/Providers/Laravel/LaravelCache.php +++ b/src/Omniphx/Forrest/Providers/Laravel/LaravelCache.php @@ -13,6 +13,7 @@ class LaravelCache implements StorageInterface protected $path; protected $seconds = 600; // 10 minutes protected $storeForever; + protected $expirationConfig; public function __construct(Config $config, Cache $cache) { diff --git a/src/Omniphx/Forrest/Providers/Lumen/LumenCache.php b/src/Omniphx/Forrest/Providers/Lumen/LumenCache.php index ca01a82..c1c753f 100644 --- a/src/Omniphx/Forrest/Providers/Lumen/LumenCache.php +++ b/src/Omniphx/Forrest/Providers/Lumen/LumenCache.php @@ -13,6 +13,7 @@ class LumenCache implements StorageInterface protected $path; protected $minutes = 20; protected $storeForever; + protected $expirationConfig; public function __construct(Cache $cache, Config $config) {