diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-12-13 08:50:54 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-12-13 10:22:12 +0100 |
commit | d62274e7daa62c8dd1e2f772e108a773ca043a69 (patch) | |
tree | 66dcd95987e267e83cba9b51b7925255e4a8601d /Core/Encoder | |
parent | d2bdba5c73733dbc45153658584f16b57126090c (diff) | |
download | symfony-security-d62274e7daa62c8dd1e2f772e108a773ca043a69.zip symfony-security-d62274e7daa62c8dd1e2f772e108a773ca043a69.tar.gz symfony-security-d62274e7daa62c8dd1e2f772e108a773ca043a69.tar.bz2 |
[DoctrineBridge] fixed some CS
Diffstat (limited to 'Core/Encoder')
-rw-r--r-- | Core/Encoder/EncoderFactory.php | 1 | ||||
-rw-r--r-- | Core/Encoder/EncoderFactoryInterface.php | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Core/Encoder/EncoderFactory.php b/Core/Encoder/EncoderFactory.php index d7ae32d..738706a 100644 --- a/Core/Encoder/EncoderFactory.php +++ b/Core/Encoder/EncoderFactory.php @@ -51,6 +51,7 @@ class EncoderFactory implements EncoderFactoryInterface * Creates the actual encoder instance * * @param array $config + * * @return PasswordEncoderInterface */ private function createEncoder(array $config) diff --git a/Core/Encoder/EncoderFactoryInterface.php b/Core/Encoder/EncoderFactoryInterface.php index 811c262..3ae07e6 100644 --- a/Core/Encoder/EncoderFactoryInterface.php +++ b/Core/Encoder/EncoderFactoryInterface.php @@ -21,9 +21,10 @@ use Symfony\Component\Security\Core\User\UserInterface; interface EncoderFactoryInterface { /** - * Returns the password encoder to use for the given account + * Returns the password encoder to use for the given account. * * @param UserInterface $user + * * @return PasswordEncoderInterface never null */ function getEncoder(UserInterface $user); |