Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
promise.php
1<?php
2
4
6
7class Promise extends Http\Promise
8{
13 public function __construct(Handler $handler, Http\Queue $queue)
14 {
15 parent::__construct($handler, $queue);
16
17 $this->id = spl_object_hash($this);
18 }
19
23 public function getHandler(): Handler
24 {
25 return $this->handler;
26 }
27}
__construct(Handler $handler, Http\Queue $queue)
Definition promise.php:13