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