[Templating] added missing use statement

This commit is contained in:
Fabien Potencier 2010-03-13 14:29:56 +01:00
parent f439e1357b
commit bce240badd
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ namespace Symfony\Components\Templating;
use Symfony\Components\Templating\Loader\LoaderInterface;
use Symfony\Components\Templating\Renderer\PhpRenderer;
use Symfony\Components\Templating\Renderer\RendererInterface;
use Symfony\Components\Templating\Helper\HelperInterface;
/*
* This file is part of the symfony package.
@ -171,7 +172,7 @@ class Engine
* Sets a helper.
*
* @param HelperInterface $value The helper instance
* @param string $alias An alias
* @param string $alias An alias
*/
public function set(HelperInterface $helper, $alias = null)
{