Skip to content

Commit

Permalink
Add missed class property to avoid PHP warning (#329)
Browse files Browse the repository at this point in the history
Thanks!
  • Loading branch information
kayw-geek authored Jul 29, 2023
1 parent 8d934b0 commit 1c9cad4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Omniphx/Forrest/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
1 change: 1 addition & 0 deletions src/Omniphx/Forrest/Providers/Laravel/LaravelCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
1 change: 1 addition & 0 deletions src/Omniphx/Forrest/Providers/Lumen/LumenCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class LumenCache implements StorageInterface
protected $path;
protected $minutes = 20;
protected $storeForever;
protected $expirationConfig;

public function __construct(Cache $cache, Config $config)
{
Expand Down

0 comments on commit 1c9cad4

Please sign in to comment.