diff --git a/app/Console/Commands/InstallCommand.php b/app/Console/Commands/InstallCommand.php index 1c782333f7ad..8d5ea372f376 100644 --- a/app/Console/Commands/InstallCommand.php +++ b/app/Console/Commands/InstallCommand.php @@ -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. *