| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 55 | 3 | public function __construct( |
|
| 56 | string $authorizationUrl, |
||
| 57 | string $tokenUrl, |
||
| 58 | array $scopes, |
||
| 59 | array $additionalProperties = [] |
||
| 60 | ) { |
||
| 61 | 3 | parent::__construct($additionalProperties); |
|
| 62 | 3 | $this->authorizationUrl = $authorizationUrl; |
|
| 63 | 3 | $this->tokenUrl = $tokenUrl; |
|
| 64 | 3 | $this->scopes = $scopes; |
|
| 65 | 3 | } |
|
| 67 |