| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class SerieAdminController extends CRUDController |
||
| 12 | { |
||
| 13 | |||
| 14 | private PlayerSerieRankingHandler $rankingHandler; |
||
| 15 | |||
| 16 | public function __construct(PlayerSerieRankingHandler $rankingHandler) |
||
| 17 | { |
||
| 18 | $this->rankingHandler = $rankingHandler; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param $id |
||
| 23 | * @return RedirectResponse |
||
| 24 | */ |
||
| 25 | public function majAction($id): RedirectResponse |
||
| 30 | } |
||
| 31 | } |
||
| 32 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.