We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e49c1 commit 87ccc22Copy full SHA for 87ccc22
artisan
@@ -28,8 +28,10 @@ $app = require_once __DIR__.'/bootstrap/app.php';
28
|
29
*/
30
31
-$status = $app->make('Illuminate\Contracts\Console\Kernel')->handle(
32
- new Symfony\Component\Console\Input\ArgvInput,
+$kernel = $app->make('Illuminate\Contracts\Console\Kernel');
+
33
+$status = $kernel->handle(
34
+ $input = new Symfony\Component\Console\Input\ArgvInput,
35
new Symfony\Component\Console\Output\ConsoleOutput
36
);
37
@@ -44,4 +46,6 @@ $status = $app->make('Illuminate\Contracts\Console\Kernel')->handle(
44
46
45
47
48
49
+$kernel->terminate($input, $status);
50
51
exit($status);
0 commit comments