| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class Token extends AbstractObject implements ObjectInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | 6 | public function accessToken(): string |
|
| 11 | { |
||
| 12 | 6 | return $this->data->access_token; |
|
| 13 | } |
||
| 14 | |||
| 15 | 6 | public function tokenType(): string |
|
| 16 | { |
||
| 17 | 6 | return $this->data->token_type; |
|
| 18 | } |
||
| 19 | |||
| 20 | |||
| 21 | 6 | public function expiresIn() |
|
| 22 | { |
||
| 23 | 6 | return $this->data->expires_in; |
|
| 24 | } |
||
| 25 | |||
| 26 | 6 | public function refreshToken(): string |
|
| 29 | } |
||
| 30 | |||
| 31 | 6 | public function scope(): string |
|
| 34 | } |
||
| 35 | } |
||
| 36 |