Skip to content

Commit 550479e

Browse files
[2.3] Fix @link annotations
1 parent 931d3db commit 550479e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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
*

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
*/

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
{

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)

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

0 commit comments

Comments
 (0)