Skip to content

Commit 97fb3e5

Browse files
committed
style: run cs-fix
1 parent 3bb2303 commit 97fb3e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Entities/AccessToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Represents a single Personal Access Token, used
1414
* for authenticating users for an API.
1515
*
16-
* @property Time|null|string $last_used_at
16+
* @property string|Time|null $last_used_at
1717
*/
1818
class AccessToken extends Entity
1919
{

src/Entities/UserIdentity.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
* though a Authenticator may want to enforce only one exists for that
2222
* user, like a password.
2323
*
24-
* @property Time|null|string $last_used_at
25-
* @property string|null $secret
26-
* @property string|null $secret2
24+
* @property string|Time|null $last_used_at
25+
* @property string|null $secret
26+
* @property string|null $secret2
2727
*/
2828
class UserIdentity extends Entity
2929
{

0 commit comments

Comments
 (0)