Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 4 | public function __construct( |
|
41 | string $domain, |
||
42 | string $key, |
||
43 | string $secret, |
||
44 | array $resources = [], |
||
45 | string $accessToken = null |
||
46 | ) { |
||
47 | 4 | $this->domain = $domain; |
|
48 | 4 | $this->key = $key; |
|
49 | 4 | $this->secret = $secret; |
|
50 | 4 | $this->resources = $resources; |
|
51 | 4 | $this->accessToken = $accessToken; |
|
52 | 4 | } |
|
53 | |||
94 |