DomainConfigHookProblemTest.php 545 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Drupal\Tests\domain_config\Functional;
  3. /**
  4. * Tests the domain config system.
  5. *
  6. * @group domain_config
  7. */
  8. class DomainConfigHookProblemTest extends DomainConfigHookTest {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public static $modules = [
  13. // Adds the domain_config module.
  14. 'domain_config',
  15. ];
  16. /**
  17. * Disabled config schema checking.
  18. *
  19. * Domain Config actually duplicates schemas provided by other modules,
  20. * so it cannot define its own.
  21. *
  22. * @var bool
  23. */
  24. protected $strictConfigSchema = FALSE;
  25. }