Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
php-http
/
client-common
/
src
:
HttpClientDecorator.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace Http\Client\Common; use Psr\Http\Client\ClientInterface; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; /** * Decorates an HTTP Client. * * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> */ trait HttpClientDecorator { /** * @var ClientInterface */ protected $httpClient; /** * {@inheritdoc} * * @see ClientInterface::sendRequest */ public function sendRequest(RequestInterface $request): ResponseInterface { return $this->httpClient->sendRequest($request); } }