Skip to content

Commit 9f76f1c

Browse files
committed
minor symfony#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
2 parents 250a805 + f588610 commit 9f76f1c

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

src/Symfony/Bridge/Propel1/Form/Type/TranslationType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
class TranslationType extends AbstractType
2525
{
2626
/**
27-
* {@inheritdoc}
28-
*/
27+
* {@inheritdoc}
28+
*/
2929
public function buildForm(FormBuilderInterface $builder, array $options)
3030
{
3131
$builder->addEventSubscriber(

src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceList.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -495,14 +495,14 @@ protected function fixChoice($choice)
495495
}
496496

497497
/**
498-
* Fixes the data type of the given choices to avoid comparison problems.
499-
*
500-
* @param array $choices The choices.
501-
*
502-
* @return array The fixed choices.
503-
*
504-
* @see fixChoice
505-
*/
498+
* Fixes the data type of the given choices to avoid comparison problems.
499+
*
500+
* @param array $choices The choices.
501+
*
502+
* @return array The fixed choices.
503+
*
504+
* @see fixChoice
505+
*/
506506
protected function fixChoices(array $choices)
507507
{
508508
return $choices;

src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
*/
2525
interface AuthenticationProviderInterface extends AuthenticationManagerInterface
2626
{
27-
/**
28-
* Checks whether this provider supports the given token.
29-
*
30-
* @param TokenInterface $token A TokenInterface instance
31-
*
32-
* @return bool true if the implementation supports the Token, false otherwise
33-
*/
27+
/**
28+
* Checks whether this provider supports the given token.
29+
*
30+
* @param TokenInterface $token A TokenInterface instance
31+
*
32+
* @return bool true if the implementation supports the Token, false otherwise
33+
*/
3434
public function supports(TokenInterface $token);
3535
}

src/Symfony/Component/Serializer/Encoder/XmlEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function decode($data, $format, array $context = array())
114114
return $this->parseXml($xml);
115115
}
116116

117-
/**
117+
/**
118118
* Checks whether the serializer can encode to given format
119119
*
120120
* @param string $format format name

src/Symfony/Component/Serializer/Tests/Normalizer/TestDenormalizer.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
class TestDenormalizer implements DenormalizerInterface
2222
{
2323
/**
24-
* {@inheritdoc}
25-
*/
24+
* {@inheritdoc}
25+
*/
2626
public function denormalize($data, $class, $format = null, array $context = array())
2727
{
2828
}
2929

3030
/**
31-
* {@inheritdoc}
32-
*/
31+
* {@inheritdoc}
32+
*/
3333
public function supportsDenormalization($data, $type, $format = null)
3434
{
3535
return true;

src/Symfony/Component/Serializer/Tests/Normalizer/TestNormalizer.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
class TestNormalizer implements NormalizerInterface
2222
{
2323
/**
24-
* {@inheritdoc}
25-
*/
24+
* {@inheritdoc}
25+
*/
2626
public function normalize($object, $format = null, array $context = array())
2727
{
2828
}
2929

3030
/**
31-
* {@inheritdoc}
32-
*/
31+
* {@inheritdoc}
32+
*/
3333
public function supportsNormalization($data, $format = null)
3434
{
3535
return true;

0 commit comments

Comments
 (0)