process = $process; $this->onQueue($process); } /** * Execute the job. * * @return void */ public function handle() { $client = new \WebSocket\Client("ws://192.168.56.101:2346/"); $client->text( json_encode([ 'username' => 'kai.1', ]) ); $client->text( $this->process . ': ' . rand() ); $client->receive(); $client->close(); } }