galleryService = $galleryService; } /** * @param ServerRequestInterface $request * @return ResponseInterface * @throws \Doctrine\ORM\ORMException * @throws \Doctrine\ORM\OptimisticLockException * @throws \Doctrine\ORM\TransactionRequiredException */ public function get(ServerRequestInterface $request): ResponseInterface { $id = (int)$request->getAttribute('id'); return new JsonResponse($this->galleryService->getAlbum($id)); } }