artisan 425B

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