'point:update:websocket-messages' command draft.

This commit is contained in:
Alexey Skobkin 2018-04-22 00:54:37 +03:00
parent e82ff0d2a1
commit 5d2ce0fe42
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<?php
namespace Skobkin\Bundle\PointToolsBundle\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ProcessWebsocketUpdatesCommand extends Command
{
/** {@inheritdoc} */
protected function configure()
{
$this
->setName('point:update:websocket-messages')
->setDescription('Reads and processes updates from Beanstalkd queue pipe')
;
}
/** {@inheritdoc} */
protected function execute(InputInterface $input, OutputInterface $output)
{
}
}