| 1 | <?php |
||
| 21 | final class TagPostArchiveAction extends AbstractPostArchiveAction |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var TagManagerInterface |
||
| 25 | */ |
||
| 26 | private $tagManager; |
||
| 27 | |||
| 28 | public function __construct(BlogInterface $blog, PostManagerInterface $postManager, TagManagerInterface $tagManager) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $tag |
||
| 37 | * |
||
| 38 | * @return Response |
||
| 39 | */ |
||
| 40 | public function __invoke(Request $request, $tag) |
||
| 53 | } |
||
| 54 |