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

11 行
307B

  1. #!/usr/bin/php -q
  2. <?php
  3. require dirname(__DIR__) . '/vendor/autoload.php';
  4. use App\Application;
  5. use Cake\Console\CommandRunner;
  6. // Build the runner with an application and root executable name.
  7. $runner = new CommandRunner(new Application(dirname(__DIR__) . '/config'), 'cake');
  8. exit($runner->run($argv));

Powered by TurnKey Linux.