ConfigSchemaChecker.php 705 B

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