/home/techb158/immovalet.com/vendor/guzzlehttp/guzzle/src/Handler
NameSizeModeActions
CurlFactory.php224560644editdlrm
CurlFactoryInterface.php6570644editdlrm
CurlHandler.php12830644editdlrm
CurlMultiHandler.php74830644editdlrm
EasyHandle.php29020644editdlrm
HeaderProcessor.php10560644editdlrm
MockHandler.php64140644editdlrm
Proxy.php22860644editdlrm
StreamHandler.php201310644editdlrm
Edit: /home/techb158/immovalet.com/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php (1283B)
factory = $options['handle_factory'] ?? new CurlFactory(3); } public function __invoke(RequestInterface $request, array $options): PromiseInterface { if (isset($options['delay'])) { \usleep($options['delay'] * 1000); } $easy = $this->factory->create($request, $options); \curl_exec($easy->handle); $easy->errno = \curl_errno($easy->handle); return CurlFactory::finish($this, $easy, $this->factory); } }