1 | <?php |
||
16 | class Guzzle |
||
17 | { |
||
18 | use ConfigTrait; |
||
19 | |||
20 | /** @var Client */ |
||
21 | private $client; |
||
22 | |||
23 | /** @var LoopInterface */ |
||
24 | private $eventloop; |
||
25 | |||
26 | /** @var CurlMultiHandler */ |
||
27 | private $handler; |
||
28 | |||
29 | /** @var TimerInterface */ |
||
30 | public $timer; |
||
31 | |||
32 | public function __construct(LoopInterface $eventLoop, array $config = []) |
||
40 | |||
41 | public function getAsync(string $uri, array $options = []) : PromiseInterface |
||
49 | |||
50 | public function post(string $uri, array $options = []) : ResponseInterface |
||
54 | |||
55 | /** |
||
56 | * @see http://stephencoakley.com/2015/06/11/integrating-guzzle-6-asynchronous-requests-with-reactphp |
||
57 | * |
||
58 | * Jiggerery with Closure::bind to get access to CurlMultiHandler::handles private member. |
||
59 | */ |
||
60 | private function scheduleProcessing() |
||
76 | } |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.