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