Skip to content

Commit

Permalink
Fix an error with token values not being typed correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Aug 27, 2024
1 parent 5f5724a commit d573df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Token extends Model
public ?string $expires = null;
public ?string $refreshToken = null;
public ?string $resourceOwnerId = null;
public ?array $values = null;
public array $values = [];
public ?DateTime $dateCreated = null;
public ?DateTime $dateUpdated = null;
public ?string $uid = null;
Expand Down

0 comments on commit d573df3

Please sign in to comment.