I would like to create a form in my "contactus" page. I'm following this tutorial. I have to extends the sfFrom class to use sfWidget, but in my code I've already extends BaseController.
Is there any solution to do this without making a new class?
class InfoController extends BaseController
{
/**
*
* @Route("/contactus", name="info_contactus_page")
* @Template()
*/
public function contactusAction()
{
return array();
}
}