Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Psr18Connection implements RemoteConnectionInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var ClientInterface |
||
17 | */ |
||
18 | private $client; |
||
19 | |||
20 | public function __construct(ClientInterface $client = null) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | * |
||
31 | * @see \Mcustiel\Phiremock\Common\Http\RemoteConnectionInterface::send() |
||
32 | */ |
||
33 | public function send(RequestInterface $request): ResponseInterface |
||
38 |