您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

artisan 350B

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);