Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
45 | 5 | public function __construct(string $endpoint, ?string $element, ?string $version, ?string $apiKey, array $acceptableMIMETypes, ?string $queryString) |
|
46 | { |
||
47 | 5 | $this->endpoint = $endpoint; |
|
48 | 5 | $this->element = $element; |
|
49 | 5 | $this->version = $version; |
|
50 | 5 | $this->apiKey = $apiKey; |
|
51 | 5 | $this->acceptableMIMETypes = $acceptableMIMETypes; |
|
52 | 5 | $this->queryString = $queryString; |
|
53 | 5 | } |
|
54 | |||
103 |