Lae/artisan

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-08-12 07:56:56 +00:00
#!/usr/bin/env php
<?php
2022-09-08 16:12:02 +00:00
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Output\ConsoleOutput;
2022-08-12 07:56:56 +00:00
/*
|--------------------------------------------------------------------------
2022-09-08 16:12:02 +00:00
| Create The Application
2022-08-12 07:56:56 +00:00
|--------------------------------------------------------------------------
|
2022-09-08 16:12:02 +00:00
| First we need to get an application instance. This creates an instance
| of the application / container and bootstraps the application so it
| is ready to receive HTTP / Console requests from the environment.
2022-08-12 07:56:56 +00:00
|
*/
2022-09-08 16:12:02 +00:00
$app = require __DIR__.'/bootstrap/app.php';
2022-08-12 07:56:56 +00:00
/*
|--------------------------------------------------------------------------
| Run The Artisan Application
|--------------------------------------------------------------------------
|
| When we run the console application, the current CLI command will be
| executed in this console and the response sent back to a terminal
| or another output device for the developers. Here goes nothing!
|
*/
2022-09-08 16:12:02 +00:00
$kernel = $app->make(
'Illuminate\Contracts\Console\Kernel'
2022-08-12 07:56:56 +00:00
);
2022-09-08 16:12:02 +00:00
exit($kernel->handle(new ArgvInput, new ConsoleOutput));