Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
10 righe
307 B
10 righe
307 B
#!/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));
|
|
|