From 5d2ce0fe4227ee15d37db0664f2194e30272e4fd Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Sun, 22 Apr 2018 00:54:37 +0300 Subject: [PATCH] 'point:update:websocket-messages' command draft. --- .../ProcessWebsocketUpdatesCommand.php | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Skobkin/Bundle/PointToolsBundle/Command/ProcessWebsocketUpdatesCommand.php diff --git a/src/Skobkin/Bundle/PointToolsBundle/Command/ProcessWebsocketUpdatesCommand.php b/src/Skobkin/Bundle/PointToolsBundle/Command/ProcessWebsocketUpdatesCommand.php new file mode 100644 index 0000000..b321802 --- /dev/null +++ b/src/Skobkin/Bundle/PointToolsBundle/Command/ProcessWebsocketUpdatesCommand.php @@ -0,0 +1,25 @@ +setName('point:update:websocket-messages') + ->setDescription('Reads and processes updates from Beanstalkd queue pipe') + ; + } + + /** {@inheritdoc} */ + protected function execute(InputInterface $input, OutputInterface $output) + { + + } +}