Skip to content

Commit 4513525

Browse files
cs fix
1 parent db84c81 commit 4513525

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

User/PasswordAuthenticatedUserInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ interface PasswordAuthenticatedUserInterface
2323
* Returns the hashed password used to authenticate the user.
2424
*
2525
* Usually on authentication, a plain-text password will be compared to this value.
26-
*
27-
* @return string|null
2826
*/
2927
public function getPassword(): ?string;
3028
}

User/User.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ public function getUserIdentifier(): string
104104
* Internally, if this method returns false, the authentication system
105105
* will throw an AccountExpiredException and prevent login.
106106
*
107-
* @return bool
108-
*
109107
* @see AccountExpiredException
110108
*/
111109
public function isAccountNonExpired(): bool
@@ -119,8 +117,6 @@ public function isAccountNonExpired(): bool
119117
* Internally, if this method returns false, the authentication system
120118
* will throw a LockedException and prevent login.
121119
*
122-
* @return bool
123-
*
124120
* @see LockedException
125121
*/
126122
public function isAccountNonLocked(): bool
@@ -134,8 +130,6 @@ public function isAccountNonLocked(): bool
134130
* Internally, if this method returns false, the authentication system
135131
* will throw a CredentialsExpiredException and prevent login.
136132
*
137-
* @return bool
138-
*
139133
* @see CredentialsExpiredException
140134
*/
141135
public function isCredentialsNonExpired(): bool
@@ -149,8 +143,6 @@ public function isCredentialsNonExpired(): bool
149143
* Internally, if this method returns false, the authentication system
150144
* will throw a DisabledException and prevent login.
151145
*
152-
* @return bool
153-
*
154146
* @see DisabledException
155147
*/
156148
public function isEnabled(): bool

0 commit comments

Comments
 (0)