Pull merge.
[yaffs-website] / web / core / lib / Drupal / Core / Config / Testing / ConfigSchemaChecker.php
1 <?php
2
3 namespace Drupal\Core\Config\Testing;
4
5 use Drupal\Core\Config\Development\ConfigSchemaChecker as SchemaChecker;
6
7 /**
8  * Listens to the config save event and validates schema.
9  *
10  * If tests have the $strictConfigSchema property set to TRUE this event
11  * listener will be added to the container and throw exceptions if configuration
12  * is invalid.
13  *
14  * @see \Drupal\KernelTests\KernelTestBase::register()
15  * @see \Drupal\simpletest\WebTestBase::setUp()
16  * @see \Drupal\simpletest\KernelTestBase::containerBuild()
17  *
18  * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0.
19  *   Use Drupal\Core\Config\Development\ConfigSchemaChecker.
20  */
21 class ConfigSchemaChecker extends SchemaChecker {
22 }