| 1 | <?php |
||
| 16 | class PsrController extends Controller |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @Route("", name="psr_index") |
||
| 20 | * @Cache(maxage="20", public=true) |
||
| 21 | * |
||
| 22 | * @return Response |
||
| 23 | */ |
||
| 24 | public function indexAction() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @Route("/{slug}", name="psr_show") |
||
| 33 | * @Cache(maxage="20", public=true) |
||
| 34 | * |
||
| 35 | * @param string $slug |
||
| 36 | * @return Response |
||
| 37 | */ |
||
| 38 | public function showAction($slug) |
||
| 53 | } |
||
| 54 |