diff --git a/src/Illuminate/Console/Scheduling/Event.php b/src/Illuminate/Console/Scheduling/Event.php index f4128d0b4416..5760d3417421 100644 --- a/src/Illuminate/Console/Scheduling/Event.php +++ b/src/Illuminate/Console/Scheduling/Event.php @@ -142,11 +142,7 @@ protected function getDefaultOutput() */ public function run(Container $container) { - if (count($this->afterCallbacks) > 0 || count($this->beforeCallbacks) > 0) { - $this->runCommandInForeground($container); - } else { - $this->runCommandInBackground(); - } + $this->runCommandInForeground($container); } /**