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

artisan 429B

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