Eugene

Results 1 issues of Eugene

I'm trying to do something like: ``` $socket->emit('test', function($data) { var_dump($data); }); ``` And then on client side (v2.3.1): ``` socket.on('test', (callback) => { console.log(callback); callback('CALLBACK WORKING'); }); ``` But...