feed = $feed; if (!empty($this->feed->id)) { $this->feedId = $feed->id; } } /** * Execute the job. */ public function handle() { $this->feed->analyze(); $this->feed = null; } /** * The unique ID of the job. * * @return string */ public function uniqueId() { return $this->feedId; } }