1 | <?php declare(strict_types=1); |
||
12 | final class LicensesHandler |
||
13 | { |
||
14 | /** |
||
15 | * @var FetchAndIterateService |
||
16 | */ |
||
17 | private $service; |
||
18 | |||
19 | /** |
||
20 | * LicensesHandler constructor. |
||
21 | * @param FetchAndIterateService $service |
||
22 | */ |
||
23 | 1 | public function __construct(FetchAndIterateService $service) |
|
27 | |||
28 | /** |
||
29 | * @param MyOrganizationsCommand $command |
||
30 | * @return PromiseInterface |
||
31 | */ |
||
32 | 1 | public function handle(LicensesCommand $command): PromiseInterface |
|
42 | } |
||
43 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.