Remove Repository injection

This commit is contained in:
James Brooks
2017-01-02 19:02:52 +00:00
parent 787986971a
commit 59d5387b44

View File

@@ -11,7 +11,6 @@
namespace CachetHQ\Cachet\Console\Commands;
use CachetHQ\Cachet\Settings\Repository;
use Dotenv\Dotenv;
use Dotenv\Exception\InvalidPathException;
use Illuminate\Console\Command;
@@ -37,27 +36,6 @@ class InstallCommand extends Command
*/
protected $description = 'Install Cachet';
/**
* The settings repository.
*
* @var \CachetHQ\Cache\Settings\Repository
*/
protected $settings;
/**
* Create a new demo seeder command instance.
*
* @param \CachetHQ\Cache\Settings\Repository $settings
*
* @return void
*/
public function __construct(Repository $settings)
{
parent::__construct();
$this->settings = $settings;
}
/**
* Execute the console command.
*