public function exists(EntityModel $model) : bool { return $this->repository->containsKey($model->getId()); }
/** * @param EntityModel $model * @return boolean */ public function exists(EntityModel $model) : bool { $result = $this->get($model->getId()); return $result !== null; }