Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 3 | public function __construct(string $tokenType, string $accessToken, string $instanceUrl, string $refreshToken = '') |
|
37 | { |
||
38 | 3 | $this->tokenType = $tokenType; |
|
39 | 3 | $this->accessToken = $accessToken; |
|
40 | 3 | $this->refreshToken = $refreshToken; |
|
41 | 3 | $this->instanceUrl = $instanceUrl; |
|
42 | 3 | } |
|
102 |