Minor
This commit is contained in:
parent
c6e61206ed
commit
48a8bc3c16
4
artisan
4
artisan
|
|
@ -28,7 +28,7 @@ $app = require_once __DIR__.'/bootstrap/app.php';
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$kernel = $app->make('Illuminate\Contracts\Console\Kernel');
|
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
||||||
|
|
||||||
$status = $kernel->handle(
|
$status = $kernel->handle(
|
||||||
$input = new Symfony\Component\Console\Input\ArgvInput,
|
$input = new Symfony\Component\Console\Input\ArgvInput,
|
||||||
|
|
@ -48,4 +48,4 @@ $status = $kernel->handle(
|
||||||
|
|
||||||
$kernel->terminate($input, $status);
|
$kernel->terminate($input, $status);
|
||||||
|
|
||||||
exit($status);
|
exit($status);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue