当我为用户创建表单时。它显示以下错误
Fatal error: Class 'Symfony\Component\Form' not found in D:\wamp\www\sandbox\src\Sensio\HelloBundle\User\UserForm.php on line 7"
下面是 UserForm.php 的代码
<?php
use Symfony\Component\Form;
use Symfony\Component\Form\TextField;
use Symfony\Component\Form\EmailField;
class UserForm extends Form
{
protected function configure()
{
$this->add(
new TextField('name',
array('max_length' => 100,
'required' => true
)
)
);
$this->add(
new EmailField('email',
array('max_length' => 100,
'required' => true
)
)
);
}
}