You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I want to send command by $client->sendCommand('test_command', 'message'); I have LogicException: There is no route for command "test_command". But when I add handler for command before send $client->bindCommand('test_command', function ($message) {}); it work...
I need send command to another php process, not in same processor...