From 67b744929f1bec03cfd037e2c65f99edace109cd Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 1 May 2020 17:20:42 +0200 Subject: [PATCH] Fix annotation --- src/Symfony/Component/Form/Form.php | 2 +- src/Symfony/Component/Form/FormInterface.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Form/Form.php b/src/Symfony/Component/Form/Form.php index e9190b82b8466..93b62a9acff35 100644 --- a/src/Symfony/Component/Form/Form.php +++ b/src/Symfony/Component/Form/Form.php @@ -932,7 +932,7 @@ public function offsetExists($name) * * @return FormInterface The child form * - * @throws \OutOfBoundsException if the named child does not exist + * @throws OutOfBoundsException if the named child does not exist */ public function offsetGet($name) { diff --git a/src/Symfony/Component/Form/FormInterface.php b/src/Symfony/Component/Form/FormInterface.php index 5c55bcd7951dc..ba6236dd34fa2 100644 --- a/src/Symfony/Component/Form/FormInterface.php +++ b/src/Symfony/Component/Form/FormInterface.php @@ -62,7 +62,7 @@ public function add($child, $type = null, array $options = []); * * @return self * - * @throws \OutOfBoundsException if the named child does not exist + * @throws Exception\OutOfBoundsException if the named child does not exist */ public function get($name);