}ߤjQBªhmѤjAÞšÖÏÀAccept-Encoding,User-Agent\œîJ™¼?4¿à¦è,Åë KEY: https://avaliareassessoria.com.br/Ven-SS/root/opt/cpanel/ea-wappspector/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php HTTP/1.1 200 OK Date: Sat, 12 Sep 2026 04:13:33 GMT Server: Apache Last-Modified: Sat, 23 Aug 2025 22:36:01 GMT Accept-Ranges: bytes Content-Length: 3615 Vary: Accept-Encoding,User-Agent Connection: close Content-Type: text/plain decider = $decider; $this->nextHandler = $nextHandler; $this->delay = $delay ?: __CLASS__.'::exponentialDelay'; } /** * Default exponential backoff delay function. * * @return int milliseconds. */ public static function exponentialDelay(int $retries): int { return (int) 2 ** ($retries - 1) * 1000; } public function __invoke(RequestInterface $request, array $options): PromiseInterface { if (!isset($options['retries'])) { $options['retries'] = 0; } $fn = $this->nextHandler; return $fn($request, $options) ->then( $this->onFulfilled($request, $options), $this->onRejected($request, $options) ); } /** * Execute fulfilled closure */ private function onFulfilled(RequestInterface $request, array $options): callable { return function ($value) use ($request, $options) { if (!($this->decider)( $options['retries'], $request, $value, null )) { return $value; } return $this->doRetry($request, $options, $value); }; } /** * Execute rejected closure */ private function onRejected(RequestInterface $req, array $options): callable { return function ($reason) use ($req, $options) { if (!($this->decider)( $options['retries'], $req, null, $reason )) { return P\Create::rejectionFor($reason); } return $this->doRetry($req, $options); }; } private function doRetry(RequestInterface $request, array $options, ?ResponseInterface $response = null): PromiseInterface { $options['delay'] = ($this->delay)(++$options['retries'], $response, $request); return $this($request, $options); } }