Symfony\Bundle\FrameworkBundle\Templating\Helper\FormHelper::__construct PHP Method

__construct() public method

Constructor;
public __construct ( Symfony\Component\Templating\EngineInterface $engine, array $resources )
$engine Symfony\Component\Templating\EngineInterface The templating engine
$resources array An array of theme name
    public function __construct(EngineInterface $engine, array $resources)
    {
        $this->engine = $engine;
        $this->resources = $resources;
        $this->varStack = array();
        $this->context = array();
        $this->templates = array();
        $this->themes = array();
    }