TestLoader.php in Drupal 8
File
core/modules/system/tests/modules/twig_loader_test/src/Loader/TestLoader.php
View source
<?php
namespace Drupal\twig_loader_test\Loader;
use Twig\Source;
class TestLoader implements \Twig_LoaderInterface, \Twig_ExistsLoaderInterface, \Twig_SourceContextLoaderInterface {
public function getSourceContext($name) {
$name = (string) $name;
$value = $name === 'kittens' ? 'kittens' : 'cats';
return new Source($value, $name);
}
public function getSource($name) {
return $this
->getSourceContext($name)
->getCode();
}
public function exists($name) {
return TRUE;
}
public function getCacheKey($name) {
return $name;
}
public function isFresh($name, $time) {
return TRUE;
}
}