From eaf114ec17c2297ac8f691320a5e07170af4a467 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Mon, 2 Jul 2018 11:15:35 +0200 Subject: [PATCH] Fix error Undefined variable: config when running cachet:install --- app/Console/Commands/InstallCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Commands/InstallCommand.php b/app/Console/Commands/InstallCommand.php index 0eaf1d72..aa747b49 100644 --- a/app/Console/Commands/InstallCommand.php +++ b/app/Console/Commands/InstallCommand.php @@ -283,6 +283,7 @@ class InstallCommand extends Command */ protected function configureCachet() { + $config = []; if ($this->confirm('Do you wish to use Cachet Beacon?')) { $config['CACHET_BEACON'] = 'true'; }