Tengo un servicio corriendo con el siguiente comando:
Código PHP:
php app/console Project:notification:server
Código PHP:
services:
project.notification:
class: NotificationsBundleCommandServerCommand
y la clase
Código PHP:
class ServerCommand extends ContainerAwareCommand {
public $notification;
/**
* Configure a new Command Line
*/
protected function configure()
{
$this->setName('Project:notification:server') ->setDescription('Start the notification server.');
}
public function getNotification()
{
return $this->notification;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->notification = new Notification();
$server = IoServer::factory(new HttpServer(
new WsServer(
$this->notification
)
), 8081);
$server->loop->addPeriodicTimer(1, function () {
$this->notification->sendToAll('Hello');
});
$server->run();
}
}
Quisiera que el servicio puede ser accesible desde cualquier controlador
Alguna idea?