All Downloads are FREE. Search and download functionalities are using the official Maven repository.

php-laravel.artisan Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
#!/usr/bin/env php
make(Illuminate\Contracts\Console\Kernel::class);

$status = $kernel->handle(
    $input = new Symfony\Component\Console\Input\ArgvInput,
    new Symfony\Component\Console\Output\ConsoleOutput
);

/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| 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.
|
*/

$kernel->terminate($input, $status);

exit($status);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy