Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / Entity / EntityTestNoId.php
1 <?php
2
3 namespace Drupal\entity_test\Entity;
4
5 /**
6  * Test entity class.
7  *
8  * @ContentEntityType(
9  *   id = "entity_test_no_id",
10  *   label = @Translation("Entity Test without id"),
11  *   handlers = {
12  *     "storage" = "Drupal\Core\Entity\ContentEntityNullStorage",
13  *   },
14  *   entity_keys = {
15  *     "bundle" = "type",
16  *   },
17  *   admin_permission = "administer entity_test content",
18  *   field_ui_base_route = "entity.entity_test_no_id.admin_form",
19  *   links = {
20  *     "add-form" = "/entity_test_no_id/add",
21  *   },
22  * )
23  */
24 class EntityTestNoId extends EntityTest {
25
26 }