[Templating] added missing use statement

This commit is contained in:
Fabien Potencier 2010-03-13 14:29:56 +01:00
parent f439e1357b
commit bce240badd

View File

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