subscription = $subscription; $this->force = $force; } /** * Execute the job. * * @return void */ public function handle() { try { app(SynchronizeAddressBook::class)->execute([ 'account_id' => $this->subscription->account_id, 'addressbook_subscription_id' => $this->subscription->id, 'force' => $this->force, ]); } catch (\Exception $e) { Log::error(__CLASS__.' '.__FUNCTION__.':'.$e->getMessage(), [$e]); } $this->subscription->last_synchronized_at = now(); $this->subscription->save(); } }