From e9ea4c1c9a25e89bdc58ba1abbb566d086f99761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Rumi=C5=84ski?= Date: Mon, 8 Dec 2014 18:42:24 +0100 Subject: [PATCH] fix phpdoc's alignment --- .../FrameworkBundle/Test/KernelTestCase.php | 2 +- .../AuthenticationProviderInterface.php | 16 +++++------ .../Serializer/Encoder/XmlEncoder.php | 28 +++++++++---------- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php b/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php index ba83a547e1..90255f85fa 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php +++ b/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php @@ -141,7 +141,7 @@ abstract class KernelTestCase extends \PHPUnit_Framework_TestCase static::$kernel->boot(); } - /** + /** * Creates a Kernel. * * Available options: diff --git a/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php b/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php index 8007234175..adad258ee0 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php @@ -24,12 +24,12 @@ use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterfac */ interface AuthenticationProviderInterface extends AuthenticationManagerInterface { - /** - * Checks whether this provider supports the given token. - * - * @param TokenInterface $token A TokenInterface instance - * - * @return bool true if the implementation supports the Token, false otherwise - */ - public function supports(TokenInterface $token); + /** + * Checks whether this provider supports the given token. + * + * @param TokenInterface $token A TokenInterface instance + * + * @return bool true if the implementation supports the Token, false otherwise + */ + public function supports(TokenInterface $token); } diff --git a/src/Symfony/Component/Serializer/Encoder/XmlEncoder.php b/src/Symfony/Component/Serializer/Encoder/XmlEncoder.php index 1df80f8c17..20f8f7fe01 100644 --- a/src/Symfony/Component/Serializer/Encoder/XmlEncoder.php +++ b/src/Symfony/Component/Serializer/Encoder/XmlEncoder.php @@ -117,21 +117,21 @@ class XmlEncoder extends SerializerAwareEncoder implements EncoderInterface, Dec return $data; } - /** - * {@inheritdoc} - */ - public function supportsEncoding($format) - { - return 'xml' === $format; - } + /** + * {@inheritdoc} + */ + public function supportsEncoding($format) + { + return 'xml' === $format; + } - /** - * {@inheritdoc} - */ - public function supportsDecoding($format) - { - return 'xml' === $format; - } + /** + * {@inheritdoc} + */ + public function supportsDecoding($format) + { + return 'xml' === $format; + } /** * Sets the root node name