diff --git a/core/.phpstan-baseline.php b/core/.phpstan-baseline.php index 49fe93ec66f352e5c9f4a8e26684d5e0d949e786..ce5472a1b88f63a2358b74ebbb15ee2a20c85672 100644 --- a/core/.phpstan-baseline.php +++ b/core/.phpstan-baseline.php @@ -2030,18 +2030,6 @@ 'count' => 1, 'path' => __DIR__ . '/tests/Drupal/KernelTests/Core/Cache/ApcuBackendTest.php', ]; -$ignoreErrors[] = [ - 'message' => '#^Call to deprecated method expectWarning\\(\\) of class PHPUnit\\\\Framework\\\\TestCase\\: -https\\://github\\.com/sebastianbergmann/phpunit/issues/5062$#', - 'count' => 1, - 'path' => __DIR__ . '/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php', -]; -$ignoreErrors[] = [ - 'message' => '#^Call to deprecated method expectWarningMessage\\(\\) of class PHPUnit\\\\Framework\\\\TestCase\\: -https\\://github\\.com/sebastianbergmann/phpunit/issues/5062$#', - 'count' => 1, - 'path' => __DIR__ . '/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php', -]; $ignoreErrors[] = [ 'message' => '#^Variable \\$expected_driver might not be defined\\.$#', 'count' => 2, diff --git a/core/lib/Drupal/Core/Config/ConfigInstaller.php b/core/lib/Drupal/Core/Config/ConfigInstaller.php index ec94fb331c7535f95dde201ce73a330d9498c399..665c4ff2d58fc44ce3c265a80f6863a1f6550085 100644 --- a/core/lib/Drupal/Core/Config/ConfigInstaller.php +++ b/core/lib/Drupal/Core/Config/ConfigInstaller.php @@ -388,7 +388,7 @@ protected function createConfiguration($collection, array $config_to_create) { if ($entity->isInstallable()) { $entity->trustData()->save(); if ($id !== $entity->id()) { - trigger_error(sprintf('The configuration name "%s" does not match the ID "%s"', $name, $entity->id()), E_USER_WARNING); + throw new \LogicException(sprintf('The configuration name "%s" does not match the ID "%s"', $name, $entity->id())); } } } diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php index 4655ae374ea0da32b5d8fa53b19fc2a2b474697b..63d2bc8618321dc4917a65d1dc4b5e7ef82cb8b6 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php @@ -263,8 +263,8 @@ public function testLanguage() { * Tests installing configuration where the filename and ID do not match. */ public function testIdMisMatch() { - $this->expectWarning(); - $this->expectWarningMessage('The configuration name "config_test.dynamic.no_id_match" does not match the ID "does_not_match"'); + $this->expectException(\LogicException::class); + $this->expectExceptionMessage('The configuration name "config_test.dynamic.no_id_match" does not match the ID "does_not_match"'); $this->installModules(['config_test_id_mismatch']); }