SQL strict mode fixes. Closes #127
This commit is contained in:
parent
b33189e08e
commit
cc09d95a3d
7 changed files with 145 additions and 32 deletions
2
console
2
console
|
|
@ -23,6 +23,7 @@ require('bootstrap.php');
|
|||
|
||||
use PHPCI\Command\RunCommand;
|
||||
use PHPCI\Command\GenerateCommand;
|
||||
use PHPCI\Command\UpdateCommand;
|
||||
use PHPCI\Command\InstallCommand;
|
||||
use PHPCI\Command\DaemonCommand;
|
||||
use Symfony\Component\Console\Application;
|
||||
|
|
@ -30,6 +31,7 @@ use Symfony\Component\Console\Application;
|
|||
$application = new Application();
|
||||
$application->add(new RunCommand);
|
||||
$application->add(new InstallCommand);
|
||||
$application->add(new UpdateCommand);
|
||||
$application->add(new GenerateCommand);
|
||||
$application->add(new DaemonCommand);
|
||||
$application->run();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue