@@ -34,20 +34,20 @@ |
||
| 34 | 34 | * @method void setHashedCode(string $token) |
| 35 | 35 | */ |
| 36 | 36 | class AccessToken extends Entity { |
| 37 | - /** @var int */ |
|
| 38 | - protected $tokenId; |
|
| 39 | - /** @var int */ |
|
| 40 | - protected $clientId; |
|
| 41 | - /** @var string */ |
|
| 42 | - protected $hashedCode; |
|
| 43 | - /** @var string */ |
|
| 44 | - protected $encryptedToken; |
|
| 37 | + /** @var int */ |
|
| 38 | + protected $tokenId; |
|
| 39 | + /** @var int */ |
|
| 40 | + protected $clientId; |
|
| 41 | + /** @var string */ |
|
| 42 | + protected $hashedCode; |
|
| 43 | + /** @var string */ |
|
| 44 | + protected $encryptedToken; |
|
| 45 | 45 | |
| 46 | - public function __construct() { |
|
| 47 | - $this->addType('id', 'int'); |
|
| 48 | - $this->addType('tokenId', 'int'); |
|
| 49 | - $this->addType('clientId', 'int'); |
|
| 50 | - $this->addType('hashedCode', 'string'); |
|
| 51 | - $this->addType('encryptedToken', 'string'); |
|
| 52 | - } |
|
| 46 | + public function __construct() { |
|
| 47 | + $this->addType('id', 'int'); |
|
| 48 | + $this->addType('tokenId', 'int'); |
|
| 49 | + $this->addType('clientId', 'int'); |
|
| 50 | + $this->addType('hashedCode', 'string'); |
|
| 51 | + $this->addType('encryptedToken', 'string'); |
|
| 52 | + } |
|
| 53 | 53 | } |