1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- define('LARAVEL_START', microtime(true));
- require __DIR__.'/vendor/autoload.php';
- $app = require_once __DIR__.'/bootstrap/app.php';
- $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
- $status = $kernel->handle(
- $input = new Symfony\Component\Console\Input\ArgvInput,
- new Symfony\Component\Console\Output\ConsoleOutput
- );
- $kernel->terminate($input, $status);
- exit($status);
|