@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | /** |
| 28 | 28 | * @param LoginUserEvent $event |
| 29 | 29 | * |
| 30 | - * @return bool |
|
| 30 | + * @return boolean|null |
|
| 31 | 31 | */ |
| 32 | 32 | public function onLogin(LoginUserEvent $event) |
| 33 | 33 | { |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | /** |
| 38 | 38 | * @param LoginUserEvent $event |
| 39 | 39 | * |
| 40 | - * @return bool |
|
| 40 | + * @return boolean|null |
|
| 41 | 41 | */ |
| 42 | 42 | public function onLoginSuccess(LoginUserEvent $event) |
| 43 | 43 | { |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | /** |
| 48 | 48 | * @param Event $event |
| 49 | 49 | * |
| 50 | - * @return bool |
|
| 50 | + * @return boolean|null |
|
| 51 | 51 | */ |
| 52 | 52 | public function onFoo(Event $event) |
| 53 | 53 | { |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | /** |
| 57 | 57 | * @param Event $event |
| 58 | 58 | * |
| 59 | - * @return bool |
|
| 59 | + * @return boolean|null |
|
| 60 | 60 | */ |
| 61 | 61 | public function onBar(Event $event) |
| 62 | 62 | { |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | /** |
| 28 | 28 | * LogoutUserCommand constructor. |
| 29 | 29 | * |
| 30 | - * @param $email |
|
| 30 | + * @param string $email |
|
| 31 | 31 | */ |
| 32 | 32 | public function __construct($email) |
| 33 | 33 | { |
@@ -39,8 +39,8 @@ |
||
| 39 | 39 | /** |
| 40 | 40 | * LoginUserCommand constructor. |
| 41 | 41 | * |
| 42 | - * @param $email |
|
| 43 | - * @param $password |
|
| 42 | + * @param string $email |
|
| 43 | + * @param string $password |
|
| 44 | 44 | */ |
| 45 | 45 | public function __construct($email, $password) |
| 46 | 46 | { |