commentService = $commentService; } public function getMethods() { return ['GET']; } public function getUrl() { return '/api/comments/:commentId/score'; } public function work() { $comment = $this->commentService->getById($this->getArgument('commentId')); return $this->getScore($comment); } }