artisan 350 B

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