Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/twig_loader_test/src/Loader/TestLoader.php
  2. 9 core/modules/system/tests/modules/twig_loader_test/src/Loader/TestLoader.php

Namespace

Drupal\twig_loader_test\Loader

File

core/modules/system/tests/modules/twig_loader_test/src/Loader/TestLoader.php
View source
<?php

namespace Drupal\twig_loader_test\Loader;

use Twig\Loader\LoaderInterface;
use Twig\Source;

/**
 * A test Twig loader.
 */
class TestLoader implements LoaderInterface {

  /**
   * {@inheritdoc}
   */
  public function getSourceContext(string $name) : Source {
    $name = (string) $name;
    $value = $name === 'kittens' ? 'kittens' : 'cats';
    return new Source($value, $name);
  }

  /**
   * {@inheritdoc}
   */
  public function exists(string $name) {
    return TRUE;
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheKey(string $name) : string {
    return $name;
  }

  /**
   * {@inheritdoc}
   */
  public function isFresh(string $name, int $time) : bool {
    return TRUE;
  }

}

Classes

Namesort descending Description
TestLoader A test Twig loader.