79633592

Date: 2025-05-22 10:59:15
Score: 0.5
Natty:
Report link

Not the correct implementation of a Symfony route in a Controller. You're setting a param in the name:

#[Route('/employeeProducts', name: 'employeeProducts{id}')]

The param should be removed so the route definition looks like:

#[Route('/employeeProducts', name: 'employeeProducts')]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Julian Koster