02ecaa772c5a1b98a9798f5ae90d186b2b5efb96
[yaffs-website] / web / core / modules / system / tests / modules / early_rendering_controller_test / src / AttachmentsTestDomainObject.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
8 class AttachmentsTestDomainObject extends TestDomainObject implements AttachmentsInterface {
9
10   use AttachmentsTrait;
11
12 }