[Templating] added a getLoader() to the Engine class

This commit is contained in:
Fabien Potencier 2010-01-29 12:05:43 +01:00
parent 340a4e97c1
commit 41d35ab898
1 changed files with 10 additions and 0 deletions

View File

@ -308,6 +308,16 @@ class Engine
return $this->charset;
}
/**
* Gets the loader associated with this engine.
*
* @return LoaderInterface A LoaderInterface instance
*/
public function getLoader()
{
return $this->loader;
}
/**
* Sets a template renderer.
*