diff -r 279124b91971 -r 01a844d292ac server/src/artisan --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server/src/artisan Mon Jun 15 19:30:32 2015 +0200 @@ -0,0 +1,51 @@ +#!/usr/bin/env php +make('Illuminate\Contracts\Console\Kernel'); + +$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);