TestCacheableDependency.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
  2. 10 core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
  3. 11.x core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php

Namespace

Drupal\Tests\Core\Render

File

core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php

View source
<?php

namespace Drupal\Tests\Core\Render;

use Drupal\Core\Cache\CacheableDependencyInterface;

/**
 * Cacheable dependency object for use in tests.
 */
class TestCacheableDependency implements CacheableDependencyInterface {
    public function __construct(array $contexts, array $tags, $max_age) {
        $this->contexts = $contexts;
        $this->tags = $tags;
        $this->maxAge = $max_age;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheContexts() {
        return $this->contexts;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheTags() {
        return $this->tags;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheMaxAge() {
        return $this->maxAge;
    }

}

Classes

Title Deprecated Summary
TestCacheableDependency Cacheable dependency object for use in tests.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.