CacheableTestDomainObject.php in Zircon Profile 8.0
File
core/modules/system/tests/modules/early_rendering_controller_test/src/CacheableTestDomainObject.php
View source
<?php
namespace Drupal\early_rendering_controller_test;
use Drupal\Core\Cache\CacheableDependencyInterface;
class CacheableTestDomainObject extends TestDomainObject implements CacheableDependencyInterface {
public function getCacheContexts() {
return [];
}
public function getCacheTags() {
return [];
}
public function getCacheMaxAge() {
return 0;
}
}