Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / Entity / EntityTestNew.php
1 <?php
2
3 namespace Drupal\entity_test\Entity;
4
5 /**
6  * Defines the test entity class for testing definition addition.
7  *
8  * This entity type is initially not defined. It is enabled when needed to test
9  * the related updates.
10  *
11  * @ContentEntityType(
12  *   id = "entity_test_new",
13  *   label = @Translation("New test entity"),
14  *   base_table = "entity_test_new",
15  *   entity_keys = {
16  *     "id" = "id",
17  *     "uuid" = "uuid",
18  *     "bundle" = "type",
19  *     "label" = "name",
20  *     "langcode" = "langcode",
21  *   }
22  * )
23  */
24 class EntityTestNew extends EntityTest {
25 }