Skip to content

Commit 1c9cad4

Browse files
authored
Add missed class property to avoid PHP warning (#329)
Thanks!
1 parent 8d934b0 commit 1c9cad4

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/Omniphx/Forrest/Client.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ abstract class Client implements AuthenticationInterface
118118
*/
119119
protected $credentials;
120120

121+
/** @var \Omniphx\Forrest\Interfaces\RepositoryInterface */
122+
protected $instanceURLRepo;
123+
124+
/** @var \Omniphx\Forrest\Interfaces\RepositoryInterface */
125+
protected $refreshTokenRepo;
126+
121127
/**
122128
* Request options.
123129
*

src/Omniphx/Forrest/Providers/Laravel/LaravelCache.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class LaravelCache implements StorageInterface
1313
protected $path;
1414
protected $seconds = 600; // 10 minutes
1515
protected $storeForever;
16+
protected $expirationConfig;
1617

1718
public function __construct(Config $config, Cache $cache)
1819
{

src/Omniphx/Forrest/Providers/Lumen/LumenCache.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class LumenCache implements StorageInterface
1313
protected $path;
1414
protected $minutes = 20;
1515
protected $storeForever;
16+
protected $expirationConfig;
1617

1718
public function __construct(Cache $cache, Config $config)
1819
{

0 commit comments

Comments
 (0)