From c1983cad4db30ad24a9fab492fe4ee73bb694844 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 10 Apr 2015 20:06:04 +0200 Subject: [PATCH] [2.3] Fix @link annotations --- src/Symfony/Bridge/Twig/Node/RenderBlockNode.php | 2 +- .../Form/Extension/Core/ChoiceList/ChoiceListInterface.php | 4 ++-- src/Symfony/Component/Form/Extension/Core/Type/BaseType.php | 2 +- .../HttpFoundation/EventListener/BindRequestListener.php | 2 +- .../Extension/Validator/ViolationMapper/ViolationPath.php | 2 +- src/Symfony/Component/Form/NativeRequestHandler.php | 2 +- src/Symfony/Component/Validator/DefaultTranslator.php | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Node/RenderBlockNode.php b/src/Symfony/Bridge/Twig/Node/RenderBlockNode.php index 457532ecd5..35dcb40b62 100644 --- a/src/Symfony/Bridge/Twig/Node/RenderBlockNode.php +++ b/src/Symfony/Bridge/Twig/Node/RenderBlockNode.php @@ -12,7 +12,7 @@ namespace Symfony\Bridge\Twig\Node; /** - * Compiles a call to {@link FormRendererInterface::renderBlock()}. + * Compiles a call to {@link \Symfony\Component\Form\FormRendererInterface::renderBlock()}. * * The function name is used as block name. For example, if the function name * is "foo", the block "foo" will be rendered. diff --git a/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceListInterface.php b/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceListInterface.php index d205b92d4d..a1265a80dc 100644 --- a/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceListInterface.php +++ b/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceListInterface.php @@ -127,7 +127,7 @@ interface ChoiceListInterface * Returns the indices corresponding to the given choices. * * The indices must be positive integers or strings accepted by - * {@link FormConfigBuilder::validateName()}. + * {@link \Symfony\Component\Form\FormConfigBuilder::validateName()}. * * The index "placeholder" is internally reserved. * @@ -145,7 +145,7 @@ interface ChoiceListInterface * Returns the indices corresponding to the given values. * * The indices must be positive integers or strings accepted by - * {@link FormConfigBuilder::validateName()}. + * {@link \Symfony\Component\Form\FormConfigBuilder::validateName()}. * * The index "placeholder" is internally reserved. * diff --git a/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php b/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php index e22bc880e6..43d90d9599 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/BaseType.php @@ -21,7 +21,7 @@ use Symfony\Component\OptionsResolver\OptionsResolverInterface; * Encapsulates common logic of {@link FormType} and {@link ButtonType}. * * This type does not appear in the form's type inheritance chain and as such - * cannot be extended (via {@link FormTypeExtension}s) nor themed. + * cannot be extended (via {@link \Symfony\Component\Form\FormExtensionInterface}) nor themed. * * @author Bernhard Schussek */ diff --git a/src/Symfony/Component/Form/Extension/HttpFoundation/EventListener/BindRequestListener.php b/src/Symfony/Component/Form/Extension/HttpFoundation/EventListener/BindRequestListener.php index bb144ed65a..2489cf371c 100644 --- a/src/Symfony/Component/Form/Extension/HttpFoundation/EventListener/BindRequestListener.php +++ b/src/Symfony/Component/Form/Extension/HttpFoundation/EventListener/BindRequestListener.php @@ -20,7 +20,7 @@ use Symfony\Component\HttpFoundation\Request; * @author Bernhard Schussek * * @deprecated Deprecated since version 2.3, to be removed in 3.0. Pass the - * Request instance to {@link Form::handleRequest()} instead. + * Request instance to {@link \Symfony\Component\Form\Form::handleRequest()} instead. */ class BindRequestListener implements EventSubscriberInterface { diff --git a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPath.php b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPath.php index 8e406a9b08..c84f98a200 100644 --- a/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPath.php +++ b/src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPath.php @@ -48,7 +48,7 @@ class ViolationPath implements \IteratorAggregate, PropertyPathInterface /** * Creates a new violation path from a string. * - * @param string $violationPath The property path of a {@link ConstraintViolation} + * @param string $violationPath The property path of a {@link \Symfony\Component\Validator\ConstraintViolation} * object. */ public function __construct($violationPath) diff --git a/src/Symfony/Component/Form/NativeRequestHandler.php b/src/Symfony/Component/Form/NativeRequestHandler.php index 7c883f12eb..c9a76858dd 100644 --- a/src/Symfony/Component/Form/NativeRequestHandler.php +++ b/src/Symfony/Component/Form/NativeRequestHandler.php @@ -159,7 +159,7 @@ class NativeRequestHandler implements RequestHandlerInterface * It's safe to pass an already converted array, in which case this method * just returns the original array unmodified. * - * This method is identical to {@link Symfony\Component\HttpFoundation\FileBag::fixPhpFilesArray} + * This method is identical to {@link \Symfony\Component\HttpFoundation\FileBag::fixPhpFilesArray} * and should be kept as such in order to port fixes quickly and easily. * * @param array $data diff --git a/src/Symfony/Component/Validator/DefaultTranslator.php b/src/Symfony/Component/Validator/DefaultTranslator.php index cb16c4dc04..46c2a453b2 100644 --- a/src/Symfony/Component/Validator/DefaultTranslator.php +++ b/src/Symfony/Component/Validator/DefaultTranslator.php @@ -88,7 +88,7 @@ class DefaultTranslator implements TranslatorInterface * have the same expressiveness. While Translator supports intervals in * message translations, which are needed for languages other than English, * this translator does not. You should use Translator or a custom - * implementation of {@link TranslatorInterface} if you need this or similar + * implementation of {@link \Symfony\Component\Translation\TranslatorInterface} if you need this or similar * functionality. * * Example usage: