From 16a40f6112fb3701bc2f8271814618775e3b69bd Mon Sep 17 00:00:00 2001 From: Katsuhiro OGAWA Date: Wed, 1 Jun 2011 17:45:51 +0900 Subject: [PATCH] [FrameworkBundle] Fixed phpdoc. --- .../FrameworkBundle/Controller/Controller.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php b/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php index bedf5c0c0e..4c9562a37d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php +++ b/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php @@ -15,6 +15,9 @@ use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\DependencyInjection\ContainerAware; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; +use Symfony\Component\Form\FormTypeInterface; +use Symfony\Component\Form\Form; +use Symfony\Component\Form\FormBuilder; /** * Controller is a simple implementation of a Controller. @@ -110,11 +113,11 @@ class Controller extends ContainerAware /** * Creates and returns a Form instance from the type of the form * - * @param string|\Symfony\Component\Form\FormTypeInterface $type The built type of the form - * @param mixed $data The initial data for the form - * @param array $options Options for the form + * @param string|FormTypeInterface $type The built type of the form + * @param mixed $data The initial data for the form + * @param array $options Options for the form * - * @return \Symfony\Component\Form\Form + * @return Form */ public function createForm($type, $data = null, array $options = array()) { @@ -127,7 +130,7 @@ class Controller extends ContainerAware * @param mixed $data The initial data for the form * @param array $options Options for the form * - * @return \Symfony\Component\Form\FormBuilder + * @return FormBuilder */ public function createFormBuilder($data = null, array $options = array()) {