1 | <?php |
||
19 | class RobotReporter |
||
20 | { |
||
21 | private $robotRepository; |
||
22 | |||
23 | private $logger; |
||
24 | |||
25 | /** |
||
26 | * @param RobotRepositoryInterface $robotRepository |
||
27 | * @param LoggerInterface $logger |
||
28 | */ |
||
29 | public function __construct( |
||
36 | |||
37 | /** |
||
38 | * @Subscribe |
||
39 | * |
||
40 | * @param RobotReport $query |
||
41 | * @return string |
||
42 | */ |
||
43 | public function handleReport(RobotReport $query): string |
||
55 | } |
||
56 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.