| 1 | <?php declare(strict_types=1); |
||
| 11 | final class BroadcastsHandler |
||
| 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 BroadcastsCommand $command |
||
| 30 | * @return PromiseInterface |
||
| 31 | */ |
||
| 32 | 1 | public function handle(BroadcastsCommand $command): PromiseInterface |
|
| 38 | } |
||
| 39 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.