id = $id; } /** * @param AdressRepositoryInterface $adressRepository * @return \Anomaly\Streams\Platform\Model\EloquentModel|null */ public function handle(AdressRepositoryInterface $adressRepository) { if ($this->id) { return $adressRepository->find($this->id); } return null; } }