This repository was archived by the owner on Feb 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1313use Illuminate \Support \Facades \Cache ;
1414use React \EventLoop \Factory as LoopFactory ;
1515use React \EventLoop \LoopInterface ;
16- use Symfony \Component \Console \Output \OutputInterface ;
1716use function React \Promise \all ;
17+ use Symfony \Component \Console \Output \OutputInterface ;
1818
1919class StartServer extends Command
2020{
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public function send($data)
5050 $ socketId = $ this ->connection ->socketId ?? null ;
5151 $ appId = $ this ->connection ->app ->id ?? null ;
5252
53- $ this ->info ("[ {$ appId }][ {$ socketId }] Sending message " . ($ this ->verbose ? $ data : '' ));
53+ $ this ->info ("[ {$ appId }][ {$ socketId }] Sending message " .($ this ->verbose ? $ data : '' ));
5454
5555 $ this ->connection ->send ($ data );
5656 }
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public function onOpen(ConnectionInterface $connection)
6767 */
6868 public function onMessage (ConnectionInterface $ connection , MessageInterface $ message )
6969 {
70- $ this ->info ("[ {$ connection ->app ->id }][ {$ connection ->socketId }] Received message " . ($ this ->verbose ? $ message ->getPayload () : '' ));
70+ $ this ->info ("[ {$ connection ->app ->id }][ {$ connection ->socketId }] Received message " .($ this ->verbose ? $ message ->getPayload () : '' ));
7171
7272 $ this ->app ->onMessage (ConnectionLogger::decorate ($ connection ), $ message );
7373 }
You can’t perform that action at this time.
0 commit comments