Skip to content

Commit 3cd6714

Browse files
committed
xx
1 parent 50cb5d0 commit 3cd6714

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Security/IIdentity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface IIdentity
1818
{
1919
/**
2020
* Returns the ID of user.
21-
* @return mixed
21+
* @return string|int
2222
*/
2323
function getId();
2424

src/Security/SimpleAuthenticator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
class SimpleAuthenticator implements Authenticator
1717
{
1818
public function __construct(
19-
/** @var array<string, string> */
19+
/** @var array<string, string> */
2020
#[\SensitiveParameter]
2121
private array $passwords,
22-
/** @var array<string, string|string[]|null> */
22+
/** @var array<string, string|string[]|null> */
2323
private array $roles = [],
24-
/** @var array<string, mixed[]> */
24+
/** @var array<string, array<string, mixed>> */
2525
private array $data = [],
2626
) {
2727
}

0 commit comments

Comments
 (0)