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);