5907021ecb00c91a16791833ab99b9cc2c79cda8
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / Entity / EntityTestNoBundle.php
1 <?php
2
3 namespace Drupal\entity_test\Entity;
4
5 /**
6  * Test entity class with no bundle.
7  *
8  * @ContentEntityType(
9  *   id = "entity_test_no_bundle",
10  *   label = @Translation("Entity Test without bundle"),
11  *   base_table = "entity_test_no_bundle",
12  *   entity_keys = {
13  *     "id" = "id",
14  *     "revision" = "revision_id",
15  *   },
16  *   admin_permission = "administer entity_test content",
17  *   links = {
18  *     "add-form" = "/entity_test_no_bundle/add",
19  *   },
20  * )
21  */
22 class EntityTestNoBundle extends EntityTest {
23
24 }