auth = $auth; $this->database = $database; $this->dispatcher = $dispatcher; $this->postRepository = $postRepository; } public function getAll($options = []) { return $this->postRepository->get($options); } public function getById($postId, array $options = []) { $post = $this->getRequestedPost($postId); return $post; } public function create($data) { $post = $this->postRepository->create($data); $this->dispatcher->fire(new PostWasCreated($post)); return $post; } public function update($postId, array $data) { $post = $this->getRequestedPost($postId); $this->postRepository->update($post, $data); $this->dispatcher->fire(new PostWasUpdated($post)); return $post; } public function delete($postId) { $post = $this->getRequestedPost($postId); $this->postRepository->delete($postId); $this->dispatcher->fire(new PostWasDeleted($post)); } private function getRequestedPost($postId) { $post = Post::with('post_type')->with('user')->where('id', $postId)->get(); if (is_null($post)) { throw new PostNotFoundException(); } return $post; } }