Remove unused $config property

This commit is contained in:
James Brooks
2018-12-28 08:31:44 +00:00
parent 64ba300cf9
commit 569323dec3
+1 -10
View File
@@ -34,25 +34,16 @@ class CommandSubscriber
*/ */
protected $cache; protected $cache;
/**
* The config repository instance.
*
* @var \Illuminate\Contracts\Config\Repository
*/
protected $config;
/** /**
* Create a new command subscriber instance. * Create a new command subscriber instance.
* *
* @param \CachetHQ\Cachet\Settings\Cache $cache * @param \CachetHQ\Cachet\Settings\Cache $cache
* @param \Illuminate\Contracts\Config\Repository $config
* *
* @return void * @return void
*/ */
public function __construct(Cache $cache, Repository $config) public function __construct(Cache $cache)
{ {
$this->cache = $cache; $this->cache = $cache;
$this->config = $config;
} }
/** /**