| 1 | <?php |
||
| 21 | class ArticlesController extends Controller |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @return View |
||
| 25 | */ |
||
| 26 | public function index(): View |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $slug |
||
| 35 | * @param Guard $guard |
||
| 36 | * @return string |
||
| 37 | * |
||
| 38 | * @throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException |
||
| 39 | * @throws |
||
| 40 | */ |
||
| 41 | public function show(string $slug, Guard $guard) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @param $id |
||
| 57 | * @return mixed |
||
| 58 | */ |
||
| 59 | public function indexForTag($id) |
||
| 63 | } |
||
| 64 |