/** * Returns an entity by id * * @param integer $id Entity id * * @return object */ public function findOneById($id) { return $this->repository->findOneById($id); }