Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | 3 | public function __construct( |
|
34 | string $accessToken, |
||
35 | string $clientToken, |
||
36 | array $availableProfiles, |
||
37 | array $selectedProfile, |
||
38 | array $user |
||
39 | ) { |
||
40 | 3 | $this->accessToken = $accessToken; |
|
41 | 3 | $this->clientToken = $clientToken; |
|
42 | 3 | $this->rawAvailableProfiles = $availableProfiles; |
|
43 | 3 | $this->rawSelectedProfile = $selectedProfile; |
|
44 | 3 | $this->rawUser = $user; |
|
45 | 3 | } |
|
71 |