Bristol SU Support Package
GuzzleClient.php
Go to the documentation of this file.
1 <?php
2 
3 
5 
6 
11 
15 class GuzzleClient implements Client
16 {
22  private $client;
23 
28  {
29  $this->client = $client;
30  }
31 
42  public function request($method, $uri, array $options = []): ResponseInterface
43  {
44  return $this->client->request($method, $uri, $options);
45  }
46 
47 }
request($method, $uri, array $options=[])