1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
promise.php
См. документацию.
1<?php
2
9
10namespace Bitrix\Main\Web\Http\Curl;
11
12use Bitrix\Main\Web\Http;
13
14class Promise extends Http\Promise
15{
21 {
22 parent::__construct($handler, $queue);
23
24 $this->id = spl_object_hash($handler->getHandle());
25 }
26
30 public function getHandler(): Handler
31 {
32 return $this->handler;
33 }
34}
__construct(Handler $handler, Http\Queue $queue)
Определения promise.php:20
Queue $queue
Определения promise.php:28