4a471e7ee126e4c22bf8fbf37f43c6ea085f616c
[yaffs-website] / web / core / modules / system / tests / modules / early_rendering_controller_test / src / AttachmentsTestResponse.php
1 <?php
2
3 namespace Drupal\early_rendering_controller_test;
4
5 use Drupal\Core\Render\AttachmentsInterface;
6 use Drupal\Core\Render\AttachmentsTrait;
7 use Symfony\Component\HttpFoundation\Response;
8
9 class AttachmentsTestResponse extends Response implements AttachmentsInterface {
10
11   use AttachmentsTrait;
12
13 }