1 | <?php declare(strict_types=1); |
||
11 | final class HooksHandler |
||
12 | { |
||
13 | /** |
||
14 | * @var FetchAndIterateService |
||
15 | */ |
||
16 | private $fetchAndIterateService; |
||
17 | |||
18 | /** |
||
19 | * @param FetchAndIterateService $fetchAndIterateService |
||
20 | */ |
||
21 | 1 | public function __construct(FetchAndIterateService $fetchAndIterateService) |
|
25 | |||
26 | /** |
||
27 | * Fetch the given repository and hydrate it. |
||
28 | * |
||
29 | * @param HooksCommand $command |
||
30 | * @return PromiseInterface |
||
31 | */ |
||
32 | 1 | public function handle(HooksCommand $command): PromiseInterface |
|
36 | } |
||
37 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.