minor #12887 [2.3] CS Fixes: fix phpdoc's alignment (keradus)

This PR was merged into the 2.3 branch.

Discussion
----------

[2.3] CS Fixes: fix phpdoc's alignment

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | ?
| Fixed tickets | N/A
| License       | MIT
| Doc PR        | N/A

Fix phpdoc's alignment

Commits
-------

f588610 fix phpdoc's alignment
This commit is contained in:
Fabien Potencier 2014-12-07 19:28:24 +01:00
commit 9f76f1c10f
6 changed files with 25 additions and 25 deletions

View File

@ -24,8 +24,8 @@ use Symfony\Bridge\Propel1\Form\EventListener\TranslationFormListener;
class TranslationType extends AbstractType class TranslationType extends AbstractType
{ {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function buildForm(FormBuilderInterface $builder, array $options) public function buildForm(FormBuilderInterface $builder, array $options)
{ {
$builder->addEventSubscriber( $builder->addEventSubscriber(

View File

@ -495,14 +495,14 @@ class ChoiceList implements ChoiceListInterface
} }
/** /**
* Fixes the data type of the given choices to avoid comparison problems. * Fixes the data type of the given choices to avoid comparison problems.
* *
* @param array $choices The choices. * @param array $choices The choices.
* *
* @return array The fixed choices. * @return array The fixed choices.
* *
* @see fixChoice * @see fixChoice
*/ */
protected function fixChoices(array $choices) protected function fixChoices(array $choices)
{ {
return $choices; return $choices;

View File

@ -24,12 +24,12 @@ use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterfac
*/ */
interface AuthenticationProviderInterface extends AuthenticationManagerInterface interface AuthenticationProviderInterface extends AuthenticationManagerInterface
{ {
/** /**
* Checks whether this provider supports the given token. * Checks whether this provider supports the given token.
* *
* @param TokenInterface $token A TokenInterface instance * @param TokenInterface $token A TokenInterface instance
* *
* @return bool true if the implementation supports the Token, false otherwise * @return bool true if the implementation supports the Token, false otherwise
*/ */
public function supports(TokenInterface $token); public function supports(TokenInterface $token);
} }

View File

@ -114,7 +114,7 @@ class XmlEncoder extends SerializerAwareEncoder implements EncoderInterface, Dec
return $this->parseXml($xml); return $this->parseXml($xml);
} }
/** /**
* Checks whether the serializer can encode to given format * Checks whether the serializer can encode to given format
* *
* @param string $format format name * @param string $format format name

View File

@ -21,15 +21,15 @@ use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
class TestDenormalizer implements DenormalizerInterface class TestDenormalizer implements DenormalizerInterface
{ {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function denormalize($data, $class, $format = null, array $context = array()) public function denormalize($data, $class, $format = null, array $context = array())
{ {
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function supportsDenormalization($data, $type, $format = null) public function supportsDenormalization($data, $type, $format = null)
{ {
return true; return true;

View File

@ -21,15 +21,15 @@ use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
class TestNormalizer implements NormalizerInterface class TestNormalizer implements NormalizerInterface
{ {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function normalize($object, $format = null, array $context = array()) public function normalize($object, $format = null, array $context = array())
{ {
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function supportsNormalization($data, $format = null) public function supportsNormalization($data, $format = null)
{ {
return true; return true;