| 1 | <?php declare(strict_types=1); |
||
| 10 | final class IteratePagesHandler |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var IteratePagesService |
||
| 14 | */ |
||
| 15 | private $service; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param IteratePagesService $service |
||
| 19 | */ |
||
| 20 | 1 | public function __construct(IteratePagesService $service) |
|
| 24 | |||
| 25 | 1 | public function handle(IteratePagesCommand $command): CancellablePromiseInterface |
|
| 29 | } |
||
| 30 |