Commit 2a14998b authored by Taylor Otwell's avatar Taylor Otwell

fire app shutdown event.

parent 89e4c29d
......@@ -57,3 +57,16 @@ $artisan = Illuminate\Console\Application::start($app);
*/
$artisan->run();
/*
|--------------------------------------------------------------------------
| 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.
|
*/
$app->shutdown();
\ No newline at end of file
......@@ -49,3 +49,16 @@ $app = require_once __DIR__.'/../bootstrap/start.php';
*/
$app->run();
/*
|--------------------------------------------------------------------------
| 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.
|
*/
$app->shutdown();
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment