Skip to content

Commit 08f4d29

Browse files
committed
minor symfony#14310 [2.3] Fix @link annotations (nicolas-grekas)
This PR was merged into the 2.3 branch. Discussion ---------- [2.3] Fix @link annotations | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - It would be great if PHP CS Fixer could enforce this. Commits ------- c1983ca [2.3] Fix @link annotations
2 parents c764a84 + c1983ca commit 08f4d29

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/Symfony/Bridge/Twig/Node/RenderBlockNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Bridge\Twig\Node;
1313

1414
/**
15-
* Compiles a call to {@link FormRendererInterface::renderBlock()}.
15+
* Compiles a call to {@link \Symfony\Component\Form\FormRendererInterface::renderBlock()}.
1616
*
1717
* The function name is used as block name. For example, if the function name
1818
* is "foo", the block "foo" will be rendered.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public function getValuesForChoices(array $choices);
127127
* Returns the indices corresponding to the given choices.
128128
*
129129
* The indices must be positive integers or strings accepted by
130-
* {@link FormConfigBuilder::validateName()}.
130+
* {@link \Symfony\Component\Form\FormConfigBuilder::validateName()}.
131131
*
132132
* The index "placeholder" is internally reserved.
133133
*
@@ -145,7 +145,7 @@ public function getIndicesForChoices(array $choices);
145145
* Returns the indices corresponding to the given values.
146146
*
147147
* The indices must be positive integers or strings accepted by
148-
* {@link FormConfigBuilder::validateName()}.
148+
* {@link \Symfony\Component\Form\FormConfigBuilder::validateName()}.
149149
*
150150
* The index "placeholder" is internally reserved.
151151
*

src/Symfony/Component/Form/Extension/Core/Type/BaseType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Encapsulates common logic of {@link FormType} and {@link ButtonType}.
2222
*
2323
* This type does not appear in the form's type inheritance chain and as such
24-
* cannot be extended (via {@link FormTypeExtension}s) nor themed.
24+
* cannot be extended (via {@link \Symfony\Component\Form\FormExtensionInterface}) nor themed.
2525
*
2626
* @author Bernhard Schussek <[email protected]>
2727
*/

src/Symfony/Component/Form/Extension/HttpFoundation/EventListener/BindRequestListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* @author Bernhard Schussek <[email protected]>
2121
*
2222
* @deprecated Deprecated since version 2.3, to be removed in 3.0. Pass the
23-
* Request instance to {@link Form::handleRequest()} instead.
23+
* Request instance to {@link \Symfony\Component\Form\Form::handleRequest()} instead.
2424
*/
2525
class BindRequestListener implements EventSubscriberInterface
2626
{

src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPath.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ViolationPath implements \IteratorAggregate, PropertyPathInterface
4848
/**
4949
* Creates a new violation path from a string.
5050
*
51-
* @param string $violationPath The property path of a {@link ConstraintViolation}
51+
* @param string $violationPath The property path of a {@link \Symfony\Component\Validator\ConstraintViolation}
5252
* object.
5353
*/
5454
public function __construct($violationPath)

src/Symfony/Component/Form/NativeRequestHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ private static function getRequestMethod()
159159
* It's safe to pass an already converted array, in which case this method
160160
* just returns the original array unmodified.
161161
*
162-
* This method is identical to {@link Symfony\Component\HttpFoundation\FileBag::fixPhpFilesArray}
162+
* This method is identical to {@link \Symfony\Component\HttpFoundation\FileBag::fixPhpFilesArray}
163163
* and should be kept as such in order to port fixes quickly and easily.
164164
*
165165
* @param array $data

src/Symfony/Component/Validator/DefaultTranslator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function trans($id, array $parameters = array(), $domain = null, $locale
8888
* have the same expressiveness. While Translator supports intervals in
8989
* message translations, which are needed for languages other than English,
9090
* this translator does not. You should use Translator or a custom
91-
* implementation of {@link TranslatorInterface} if you need this or similar
91+
* implementation of {@link \Symfony\Component\Translation\TranslatorInterface} if you need this or similar
9292
* functionality.
9393
*
9494
* Example usage:

0 commit comments

Comments
 (0)