Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FilesystemCache.php

function FilesystemCache::load

Overrides CacheInterface::load

File

vendor/twig/twig/src/Cache/FilesystemCache.php, line 39

Class

FilesystemCache
Implements a cache on the filesystem.

Namespace

Twig\Cache

Code

public function load(string $key) : void {
    if (is_file($key)) {
        @(include_once $key);
    }
}
RSS feed
Powered by Drupal