subscription = $subscription->withoutRelations(); $this->uri = $uri; } /** * Send Delete contact. * * @return void */ public function handle(): void { if (! $this->batching()) { return; } Log::info(__CLASS__.' '.$this->uri); $this->subscription->getClient() ->request('DELETE', $this->uri); } }