8000 minor #4052 [Security] [Custom Provider] Use properties on Webservice… · symfony/symfony-docs@b06ad60 · GitHub
[go: up one dir, main page]

Skip to content

Commit b06ad60

Browse files
committed
minor #4052 [Security] [Custom Provider] Use properties on WebserviceUser (entering)
This PR was submitted for the 2.5 branch but it was merged into the 2.3 branch instead (closes #4052). Discussion ---------- [Security] [Custom Provider] Use properties on WebserviceUser Commits ------- c6ede6d Security] [Custom Provider] Use properties on WebserviceUser 8d69fc8 [Security] [Custom Provider] Use getters on WebserviceUser
2 parents a834a7e + d82bb24 commit b06ad60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cookbook/security/custom_provider.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ This is how your ``WebserviceUser`` class looks in action::
9090
return false;
9191
}
9292

93-
if ($this->getSalt() !== $user->getSalt()) {
93+
if ($this->salt !== $user->getSalt()) {
9494
return false;
9595
}
9696

0 commit comments

Comments
 (0)
0