Skip to content

Commit

Permalink
minor #4052 [Security] [Custom Provider] Use properties on Webservice…
Browse files Browse the repository at this point in the history
…User (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
  • Loading branch information
weaverryan committed Jul 29, 2014
2 parents a834a7e + d82bb24 commit b06ad60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookbook/security/custom_provider.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ This is how your ``WebserviceUser`` class looks in action::
return false;
}

if ($this->getSalt() !== $user->getSalt()) {
if ($this->salt !== $user->getSalt()) {
return false;
}

Expand Down

0 comments on commit b06ad60

Please sign in to comment.