From de289d2cfd173ef802e2ca72151422c9b79ff0c8 Mon Sep 17 00:00:00 2001 From: Douglas Greenshields Date: Tue, 11 Jun 2013 12:21:03 +0100 Subject: [PATCH] [Form] corrected interface bind() method defined against in deprecation notice --- src/Symfony/Component/Form/Form.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Form/Form.php b/src/Symfony/Component/Form/Form.php index f1c8e5cc60..55d80c2f9f 100644 --- a/src/Symfony/Component/Form/Form.php +++ b/src/Symfony/Component/Form/Form.php @@ -649,11 +649,11 @@ class Form implements \IteratorAggregate, FormInterface * @throws FormException if the method of the request is not one of GET, POST or PUT * * @deprecated Deprecated since version 2.1, to be removed in 2.3. Use - * {@link FormConfigInterface::bind()} instead. + * {@link FormInterface::bind()} instead. */ public function bindRequest(Request $request) { - trigger_error('bindRequest() is deprecated since version 2.1 and will be removed in 2.3. Use FormConfigInterface::bind() instead.', E_USER_DEPRECATED); + trigger_error('bindRequest() is deprecated since version 2.1 and will be removed in 2.3. Use FormInterface::bind() instead.', E_USER_DEPRECATED); return $this->bind($request); }