選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

1234567891011121314151617181920
  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...
  8. $app = require_once __DIR__.'/bootstrap/app.php';
  9. // Rebind the kernel...
  10. Statamic\Console\Please\Application::rebindKernel();
  11. // Handle the command...
  12. $status = $app->handleCommand(new ArgvInput);
  13. exit($status);