public function Twig_Environment::getLoader in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/lib/Twig/Environment.php \Twig_Environment::getLoader()
Gets the Loader instance.
Return value
Twig_LoaderInterface A Twig_LoaderInterface instance
1 call to Twig_Environment::getLoader()
- Twig_Environment::createTemplate in vendor/
twig/ twig/ lib/ Twig/ Environment.php - Creates a template from source.
File
- vendor/
twig/ twig/ lib/ Twig/ Environment.php, line 697
Class
- Twig_Environment
- Stores the Twig configuration.
Code
public function getLoader() {
if (null === $this->loader) {
throw new LogicException('You must set a loader first.');
}
return $this->loader;
}