| 1 | <?php declare(strict_types=1); |
||
| 12 | final class AppVeyorHandler |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var AsyncClient |
||
| 16 | */ |
||
| 17 | private $appveyor; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param AsyncClient $appveyor |
||
| 21 | */ |
||
| 22 | public function __construct(AsyncClient $appveyor) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param TravisCommand $command |
||
| 29 | * @return PromiseInterface |
||
| 30 | */ |
||
| 31 | public function handle(AppVeyorCommand $command): PromiseInterface |
||
| 47 | } |
||
| 48 |