12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- @trigger_error('The Twig_Loader_String class is deprecated since version 1.18.1 and will be removed in 2.0. Use Twig_Loader_Array instead or Twig_Environment::createTemplate().', E_USER_DEPRECATED);
- class Twig_Loader_String implements Twig_LoaderInterface, Twig_ExistsLoaderInterface
- {
-
- public function getSource($name)
- {
- return $name;
- }
-
- public function exists($name)
- {
- return true;
- }
-
- public function getCacheKey($name)
- {
- return $name;
- }
-
- public function isFresh($name, $time)
- {
- return true;
- }
- }
|