pushToken = $pushToken; $this->actor = $actor; } /** * Execute the job. */ public function handle(): void { try { NotificationAppGatewayService::send($this->pushToken, 'like', $this->actor); } catch (Exception $e) { return; } } }