1<?php
2
3namespace Drupal\Core\Config\Testing;
4
5use 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 is removed from drupal:9.0.0.
19 *   Use Drupal\Core\Config\Development\ConfigSchemaChecker.
20 */
21class ConfigSchemaChecker extends SchemaChecker {
22}
23