Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / Entity / EntityTestDefaultAccess.php
1 <?php
2
3 namespace Drupal\entity_test\Entity;
4
5 /**
6  * Defines a test entity class with no access control handler.
7  *
8  * @ContentEntityType(
9  *   id = "entity_test_default_access",
10  *   label = @Translation("Test entity with default access"),
11  *   base_table = "entity_test_default_access",
12  *   entity_keys = {
13  *     "id" = "id",
14  *     "bundle" = "type"
15  *   }
16  * )
17  */
18 class EntityTestDefaultAccess extends EntityTest {
19
20 }