diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-22 17:29:52 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-22 17:29:52 +0100 |
commit | 20711216c818e8a57cdb5d3bc1b2fc8bc34757c9 (patch) | |
tree | eda128b755c8438f9f5ae3f7c5049a08f01386e1 /Core/User/UserProviderInterface.php | |
parent | 4fb29cc3a28770e1045e400fd740fc6028ae6df3 (diff) | |
parent | a542abcf38b95de8e8f01f42b6127e7fffc645a8 (diff) | |
download | symfony-security-20711216c818e8a57cdb5d3bc1b2fc8bc34757c9.zip symfony-security-20711216c818e8a57cdb5d3bc1b2fc8bc34757c9.tar.gz symfony-security-20711216c818e8a57cdb5d3bc1b2fc8bc34757c9.tar.bz2 |
Merge branch '2.3' into 2.5
* 2.3:
[2.3] CS And DocBlock Fixes
[2.3] CS Fixes
Conflicts:
src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php
src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php
src/Symfony/Bundle/FrameworkBundle/EventListener/TestSessionListener.php
src/Symfony/Component/Config/Definition/ReferenceDumper.php
src/Symfony/Component/Console/Application.php
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php
src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
src/Symfony/Component/Form/Extension/Csrf/EventListener/CsrfValidationListener.php
src/Symfony/Component/Form/FormError.php
src/Symfony/Component/HttpFoundation/Request.php
src/Symfony/Component/HttpFoundation/Response.php
src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php
src/Symfony/Component/Process/ProcessUtils.php
src/Symfony/Component/PropertyAccess/PropertyAccessor.php
src/Symfony/Component/PropertyAccess/PropertyAccessorInterface.php
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php
src/Symfony/Component/Validator/Constraints/CardSchemeValidator.php
src/Symfony/Component/Validator/Constraints/GroupSequence.php
src/Symfony/Component/Validator/Mapping/ClassMetadata.php
src/Symfony/Component/Validator/Mapping/ClassMetadataFactory.php
src/Symfony/Component/Validator/Mapping/MemberMetadata.php
src/Symfony/Component/Validator/Tests/Fixtures/StubGlobalExecutionContext.php
Diffstat (limited to 'Core/User/UserProviderInterface.php')
-rw-r--r-- | Core/User/UserProviderInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/User/UserProviderInterface.php b/Core/User/UserProviderInterface.php index 6b7895c..d17e3b7 100644 --- a/Core/User/UserProviderInterface.php +++ b/Core/User/UserProviderInterface.php @@ -46,7 +46,6 @@ interface UserProviderInterface * @see UsernameNotFoundException * * @throws UsernameNotFoundException if the user is not found - * */ public function loadUserByUsername($username); @@ -57,6 +56,7 @@ interface UserProviderInterface * totally reloaded (e.g. from the database), or if the UserInterface * object can just be merged into some internal array of users / identity * map. + * * @param UserInterface $user * * @return UserInterface @@ -66,7 +66,7 @@ interface UserProviderInterface public function refreshUser(UserInterface $user); /** - * Whether this provider supports the given user class + * Whether this provider supports the given user class. * * @param string $class * |