| 1 | <?php declare(strict_types=1); |
||
| 12 | final class IteratePagesHandler |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var IteratePagesService |
||
| 16 | */ |
||
| 17 | private $service; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param IteratePagesService $service |
||
| 21 | */ |
||
| 22 | 1 | public function __construct(IteratePagesService $service) |
|
| 26 | |||
| 27 | 1 | public function handle(IteratePagesCommand $command): CancellablePromiseInterface |
|
| 31 | } |
||
| 32 |