| 1 | <?php |
||
| 21 | final class CommentListAction extends Controller |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var CommentManagerInterface |
||
| 25 | */ |
||
| 26 | private $commentManager; |
||
| 27 | |||
| 28 | public function __construct(CommentManagerInterface $commentManager) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param int $postId |
||
| 35 | * |
||
| 36 | * @return Response |
||
| 37 | */ |
||
| 38 | public function __invoke($postId) |
||
| 50 | } |
||
| 51 |