Skip to content

Commit dd295ca

Browse files
committed
cs
1 parent fe89d52 commit dd295ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Security/User.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ class User
5151
/** default role for authenticated user without own identity */
5252
public string $authenticatedRole = 'authenticated';
5353

54-
/** @var callable[] function (User $sender): void; Occurs when the user is successfully logged in */
54+
/** @var array<callable(self): void> Occurs when the user is successfully logged in */
5555
public array $onLoggedIn = [];
5656

57-
/** @var callable[] function (User $sender): void; Occurs when the user is logged out */
57+
/** @var array<callable(self): void> Occurs when the user is logged out */
5858
public array $onLoggedOut = [];
5959

6060
private ?IIdentity $identity = null;

0 commit comments

Comments
 (0)