创建表单类Symfony2

时间:2016-04-21 11:49:43

标签: php forms symfony phpstorm

我在创建表单类时遇到问题。我使用此链接http://symfony.com/doc/current/book/forms.html#creating-form-classes 但在phpstorm我有错误 enter image description here

Symfony 2.8.4,phpstorm 9.0.2。我做错了什么? 的 UPD  我发现主题,同样的问题Symfony2 Form folder 但我没有看到那里的解决方案。 的 DefaultController.php

<?php

namespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use AppBundle\Form\TaskType;

use Symfony\Component\HttpFoundation\Response;


class DefaultController extends Controller
{


    /**
     * @Route("/task")
     */
    public function new1Action()
    {
        /**
         * @var TaskType $task
         */
        $task = new TaskType();
        $form = $this->createForm(TaskType::class, $task);
        return new Response('1');
    }
}
`

更新我不知道发生了什么,但在完成所有建议并重新加载计算机后,这个问题就解决了。我不知道有什么帮助。

0 个答案:

没有答案