/ artisan
artisan
1 #!/usr/bin/env php 2 <?php 3 4 use Symfony\Component\Console\Input\ArgvInput; 5 6 define('LARAVEL_START', microtime(true)); 7 8 // Register the Composer autoloader... 9 require __DIR__.'/vendor/autoload.php'; 10 11 // Bootstrap Laravel and handle the command... 12 $status = (require_once __DIR__.'/bootstrap/app.php') 13 ->handleCommand(new ArgvInput); 14 15 exit($status);