| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ImageController extends AbstractController |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @Route("/image/{id}", name="image_show", methods={"GET"}) |
||
| 14 | */ |
||
| 15 | public function show(Image $image): Response |
||
| 19 | ]); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @Route("/images/{id}", name="old_images_show_redirect", methods={"GET"}) |
||
| 24 | */ |
||
| 25 | public function oldImagesShowRedirect(Image $image): Response |
||
| 37 |