Added lcdbridge

This commit is contained in:
2014-06-15 00:34:33 +02:00
parent 093f164121
commit 3e4765d071
9 changed files with 242 additions and 11 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace NoccyLabs\LcdBridge;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class DaemonCommand extends Command
{
protected function configure()
{
$this
->setName("daemon")
->setDescription("Spawn a new daemon")
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
}
}