選択できるのは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.