Commit 009c2fbd authored by Taylor Otwell's avatar Taylor Otwell

Tweak artisan file.

parent e0c22a6e
......@@ -28,8 +28,10 @@ $app = require_once __DIR__.'/bootstrap/app.php';
|
*/
$status = $app->make('Illuminate\Contracts\Console\Kernel')->handle(
new Symfony\Component\Console\Input\ArgvInput,
$kernel = $app->make('Illuminate\Contracts\Console\Kernel');
$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
);
......@@ -44,4 +46,6 @@ $status = $app->make('Illuminate\Contracts\Console\Kernel')->handle(
|
*/
$kernel->terminate($input, $status);
exit($status);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment