Skip to content

Commit f4cdfb6

Browse files
authored
Merge pull request #464 from datamweb/fix-property-last_used_at
docs: add `string` property for `$last_used_at`
2 parents b046dfc + 97fb3e5 commit f4cdfb6

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 $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 $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)