1 | <?php |
||
14 | class BookingFacade |
||
15 | { |
||
16 | /** |
||
17 | * @var CurlClient |
||
18 | */ |
||
19 | private $httpClient; |
||
20 | |||
21 | /** |
||
22 | * BookingFacade constructor. |
||
23 | * @param string $login |
||
24 | * @param string $password |
||
25 | * @param int $timeout |
||
26 | * @throws ErrorException |
||
27 | */ |
||
28 | public function __construct(string $login, string $password, int $timeout = 30) |
||
34 | |||
35 | /** |
||
36 | * @param Query $query |
||
37 | * @return Result |
||
38 | * @throws Exceptions\BookingResponseException |
||
39 | */ |
||
40 | public function query(Query $query): Result |
||
46 | } |
||
47 |