Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / config / tests / config_test / src / Entity / ConfigQueryTest.php
1 <?php
2
3 namespace Drupal\config_test\Entity;
4
5 /**
6  * Defines the ConfigQueryTest configuration entity used by the query test.
7  *
8  * @ConfigEntityType(
9  *   id = "config_query_test",
10  *   label = @Translation("Test configuration for query"),
11  *   handlers = {
12  *     "storage" = "Drupal\config_test\ConfigTestStorage",
13  *     "list_builder" = "Drupal\Core\Config\Entity\ConfigEntityListBuilder",
14  *     "form" = {
15  *       "default" = "Drupal\config_test\ConfigTestForm"
16  *     }
17  *   },
18  *   config_prefix = "query",
19  *   entity_keys = {
20  *     "id" = "id",
21  *     "label" = "label"
22  *   }
23  * )
24  *
25  * @see \Drupal\system\Tests\Entity\ConfigEntityQueryTest
26  */
27 class ConfigQueryTest extends ConfigTest {
28
29   /**
30    * A number used by the sort tests.
31    *
32    * @var int
33    */
34   public $number;
35
36   /**
37    * An array used by the wildcard tests.
38    *
39    * @var array
40    */
41   public $array = [];
42
43 }