Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/Cloudflare-CPanel-7.0.1/vendor/guzzlehttp/guzzle/src/Event/ |
<?php namespace GuzzleHttp\Event; use GuzzleHttp\Transaction; use GuzzleHttp\ClientInterface; use GuzzleHttp\Message\RequestInterface; /** * Base class for request events, providing a request and client getter. */ abstract class AbstractRequestEvent extends AbstractEvent { /** @var Transaction */ protected $transaction; /** * @param Transaction $transaction */ public function __construct(Transaction $transaction) { $this->transaction = $transaction; } /** * Get the HTTP client associated with the event. * * @return ClientInterface */ public function getClient() { return $this->transaction->client; } /** * Get the request object * * @return RequestInterface */ public function getRequest() { return $this->transaction->request; } /** * Get the number of transaction retries. * * @return int */ public function getRetryCount() { return $this->transaction->retries; } /** * @return Transaction */ public function getTransaction() { return $this->transaction; } }