public function delete() { if ($this->entity->exists) { return $this->entity->delete(); } else { return false; } }
/** * @param $id * @return Entity */ public function find($id) { return $this->entity->find($id); }