Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 3 | public function __construct(string $endpoint, ?string $element, ?string $version, ?string $apiKey, array $acceptableMIMETypes, ?string $queryString) |
|
41 | { |
||
42 | 3 | $this->endpoint = $endpoint; |
|
43 | 3 | $this->element = $element; |
|
44 | 3 | $this->version = $version; |
|
45 | 3 | $this->apiKey = $apiKey; |
|
46 | 3 | $this->acceptableMIMETypes = $acceptableMIMETypes; |
|
47 | 3 | $this->queryString = $queryString; |
|
48 | 3 | } |
|
49 | |||
98 |