Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 45.45% |
Changes | 0 |
1 | <?php |
||
15 | class IndexController extends AbstractController |
||
16 | { |
||
17 | 1 | public function indexAction(): Response |
|
23 | ) |
||
24 | ); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param \Symfony\Component\HttpFoundation\Request $request |
||
29 | * @param string $name |
||
30 | * |
||
31 | * @return \Symfony\Component\HttpFoundation\Response |
||
32 | * @throws \Core\Locator\Dynamic\ServiceNotParseable |
||
33 | */ |
||
34 | public function nameAction(Request $request, string $name): Response |
||
45 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.