This is a fork of ashiina/socket.io-php-emitter. If you have any questions or issues, please submit them there as this fork is not actively developed.
A PHP implementation of socket.io-emitter.
This fork makes it possible to specify multiple channels to emit to in one call.
$emitter = new SocketIO\Emitter($redis);
$emitter
->in(['channel1', 'channel2', 'channel3'])
->emit('event', 'payload str');