From f7c5a97b98373262df0eedb34cbbe49c2f9ec733 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Fri, 14 Sep 2018 19:17:54 +1000 Subject: [PATCH] Update artisan from upstream --- artisan | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/artisan b/artisan index eb5e2bb6..5c23e2e2 100644 --- a/artisan +++ b/artisan @@ -1,6 +1,8 @@ #!/usr/bin/env php make('Illuminate\Contracts\Console\Kernel'); +$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class); $status = $kernel->handle( - $input = new Symfony\Component\Console\Input\ArgvInput, - new Symfony\Component\Console\Output\ConsoleOutput + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput ); /* @@ -40,7 +42,7 @@ $status = $kernel->handle( | Shutdown The Application |-------------------------------------------------------------------------- | -| Once Artisan has finished running. We will fire off the shutdown events +| Once Artisan has finished running, we will fire off the shutdown events | so that any final work may be done by the application before we shut | down the process. This is the last thing to happen to the request. |