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'; ...@@ -28,8 +28,10 @@ $app = require_once __DIR__.'/bootstrap/app.php';
| |
*/ */
$status = $app->make('Illuminate\Contracts\Console\Kernel')->handle( $kernel = $app->make('Illuminate\Contracts\Console\Kernel');
new Symfony\Component\Console\Input\ArgvInput,
$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput new Symfony\Component\Console\Output\ConsoleOutput
); );
...@@ -44,4 +46,6 @@ $status = $app->make('Illuminate\Contracts\Console\Kernel')->handle( ...@@ -44,4 +46,6 @@ $status = $app->make('Illuminate\Contracts\Console\Kernel')->handle(
| |
*/ */
$kernel->terminate($input, $status);
exit($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