| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function __construct( |
||
| 15 | CredentialsInterface $credentials, |
||
| 16 | ClientInterface $httpClient, |
||
| 17 | TokenStorageInterface $storage, |
||
| 18 | SignatureInterface $signature, |
||
| 19 | UriInterface $baseApiUri |
||
| 20 | ) { |
||
| 21 | parent::__construct($credentials, $httpClient, $storage, $signature, $baseApiUri); |
||
| 22 | |||
| 23 | if (null === $baseApiUri) { |
||
| 24 | throw new \Exception('baseApiUri is a required argument.'); |
||
| 25 | } |
||
| 26 | } |
||
| 27 | |||
| 53 |