daemon work

This commit is contained in:
Gabriel Baker 2013-06-09 17:42:50 +01:00
commit 910e09eb52
3 changed files with 83 additions and 2 deletions

View file

@ -28,10 +28,12 @@ require('bootstrap.php');
use PHPCI\Command\RunCommand;
use PHPCI\Command\GenerateCommand;
use PHPCI\Command\InstallCommand;
use PHPCI\Command\DaemonCommand;
use Symfony\Component\Console\Application;
$application = new Application();
$application->add(new RunCommand);
$application->add(new InstallCommand);
$application->add(new GenerateCommand);
$application->add(new DaemonCommand);
$application->run();