f554021c66eee46ce6724952b3fd89a88e5de635
[yaffs-website] / early_rendering_controller_test / src / CacheableTestResponse.php
1 <?php
2
3 namespace Drupal\early_rendering_controller_test;
4
5 use Drupal\Core\Cache\CacheableResponseInterface;
6 use Drupal\Core\Cache\CacheableResponseTrait;
7 use Symfony\Component\HttpFoundation\Response;
8
9 class CacheableTestResponse extends Response implements CacheableResponseInterface {
10
11   use CacheableResponseTrait;
12
13 }