auth = $auth; $this->database = $database; $this->dispatcher = $dispatcher; $this->userRepository = $userRepository; } public function getAll($options = []) { return $this->userRepository->get($options); } public function getById($userId, array $options = []) { $user = $this->getRequestedUser($userId); return $user; } public function create($data) { $user = $this->userRepository->create($data); $this->dispatcher->fire(new UserWasCreated($user)); return $user; } public function update($userId, array $data) { $user = $this->getRequestedUser($userId); $this->userRepository->update($user, $data); $this->dispatcher->fire(new UserWasUpdated($user)); return $user; } public function delete($userId) { $user = $this->getRequestedUser($userId); $this->userRepository->delete($userId); $this->dispatcher->fire(new UserWasDeleted($user)); } private function getRequestedUser($userId) { $user = $this->userRepository->getById($userId); if (is_null($user)) { throw new UserNotFoundException(); } return $user; } }