service = $service; $this->userId = $userId; } /** * @NoAdminRequired */ public function index(): DataResponse { return new DataResponse($this->service->findAll($this->userId)); } /** * @NoAdminRequired */ public function show(int $id): DataResponse { return $this->handleNotFound(function () use ($id) { return $this->service->find($id, $this->userId); }); } /** * @NoAdminRequired */ public function create(string $title, string $content): DataResponse { return new DataResponse($this->service->create($title, $content, $this->userId)); } /** * @NoAdminRequired */ public function update(int $id, string $title, string $content): DataResponse { return $this->handleNotFound(function () use ($id, $title, $content) { return $this->service->update($id, $title, $content, $this->userId); }); } /** * @NoAdminRequired */ public function destroy(int $id): DataResponse { return $this->handleNotFound(function () use ($id) { return $this->service->delete($id, $this->userId); }); } }