| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function __construct( |
||
| 39 | ClientInterface $guzzle, |
||
| 40 | string $baseUri, |
||
| 41 | AuthenticationInterface $authentication, |
||
| 42 | FormatInterface $format |
||
| 43 | ) { |
||
| 44 | $this->guzzle = $guzzle; |
||
| 45 | $this->baseUri = $baseUri; |
||
| 46 | $this->authentication = $authentication; |
||
| 47 | $this->format = $format; |
||
| 48 | } |
||
| 49 | |||
| 82 |