Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- #!/usr/bin/php -q
- <?php
- require dirname(__DIR__) . '/vendor/autoload.php';
-
- use App\Application;
- use Cake\Console\CommandRunner;
-
- // Build the runner with an application and root executable name.
- $runner = new CommandRunner(new Application(dirname(__DIR__) . '/config'), 'cake');
- exit($runner->run($argv));
|