| 1 | <?php |
||
| 19 | final class CommentListAction extends Controller |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var CommentManagerInterface |
||
| 23 | */ |
||
| 24 | private $commentManager; |
||
| 25 | |||
| 26 | public function __construct(CommentManagerInterface $commentManager) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param int $postId |
||
| 33 | * |
||
| 34 | * @return Response |
||
| 35 | */ |
||
| 36 | public function __invoke($postId) |
||
| 48 | } |
||
| 49 |