Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / Entity / EntityTestCache.php
1 <?php
2
3 namespace Drupal\entity_test\Entity;
4
5 /**
6  * Defines the test entity class.
7  *
8  * @ContentEntityType(
9  *   id = "entity_test_cache",
10  *   label = @Translation("Test entity with field cache"),
11  *   handlers = {
12  *     "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
13  *     "form" = {
14  *       "default" = "Drupal\entity_test\EntityTestForm"
15  *     },
16  *     "translation" = "Drupal\content_translation\ContentTranslationHandler"
17  *   },
18  *   base_table = "entity_test_cache",
19  *   entity_keys = {
20  *     "id" = "id",
21  *     "uuid" = "uuid",
22  *     "bundle" = "type"
23  *   }
24  * )
25  */
26 class EntityTestCache extends EntityTest {
27
28 }