Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

11 lignes
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.