user = $user; } /** * Execute the job. * * @return void */ public function handle() { $params = [ 'Identifier' => (string) $this->user->id, 'Nick' => $this->user->info->nickname ?? '', 'FaceUrl' => $this->user->info->avatar ?? '', ]; app('im')->send('im_open_login_svc', 'account_import', $params); } }