Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
49 | public function __construct($accessToken, $refreshToken, $expiresAt, $scope = null, $refreshTokenExpireAt = 0) |
||
50 | { |
||
51 | $this->accessToken = $accessToken; |
||
52 | $this->refreshToken = $refreshToken; |
||
53 | $this->expiresAt = (int) $expiresAt; |
||
54 | $this->refreshTokenExpiresAt = (int) $refreshTokenExpireAt; |
||
55 | $this->scope = $scope; |
||
56 | } |
||
57 | |||
106 |