| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | trait ClientTrait |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Guzzle client |
||
| 15 | * |
||
| 16 | * @var \GuzzleHttp\ClientInterface |
||
| 17 | */ |
||
| 18 | protected $client; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Set Guzzle client |
||
| 22 | * |
||
| 23 | * @param \GuzzleHttp\ClientInterface $client |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | 53 | public function setClient(ClientInterface $client): void |
|
| 32 |