Version 1
[yaffs-website] / web / core / modules / system / tests / modules / early_rendering_controller_test / src / CacheableTestDomainObject.php
diff --git a/web/core/modules/system/tests/modules/early_rendering_controller_test/src/CacheableTestDomainObject.php b/web/core/modules/system/tests/modules/early_rendering_controller_test/src/CacheableTestDomainObject.php
new file mode 100644 (file)
index 0000000..9da6fd8
--- /dev/null
@@ -0,0 +1,12 @@
+<?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;
+
+}