You are here

CacheableTestDomainObject.php in Drupal 10

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;
use Drupal\Core\Cache\UncacheableDependencyTrait;
class CacheableTestDomainObject extends TestDomainObject implements CacheableDependencyInterface {
  use UncacheableDependencyTrait;

}

Classes