From 2d27c2f71b10bfbeec8ee36c681eeb67d5917484 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 18 Nov 2023 09:37:05 +0000 Subject: [PATCH] test: null instead of NULL --- tests/Kernel/Validator/ConfigurationValidatorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Kernel/Validator/ConfigurationValidatorTest.php b/tests/Kernel/Validator/ConfigurationValidatorTest.php index 61ffc85..8abff75 100644 --- a/tests/Kernel/Validator/ConfigurationValidatorTest.php +++ b/tests/Kernel/Validator/ConfigurationValidatorTest.php @@ -33,7 +33,7 @@ class ConfigurationValidatorTest extends KernelTestCase */ public function testTheProjectNameShouldBeAString(mixed $projectName, int $expectedViolationCount): void { - if ($projectName === NULL) { + if ($projectName === null) { self::expectException(NotNormalizableValueException::class); } @@ -58,7 +58,7 @@ class ConfigurationValidatorTest extends KernelTestCase */ public function testTheProjectLanguageShouldBeASupportedLanguage(mixed $language, int $expectedViolationCount): void { - if ($language === NULL) { + if ($language === null) { self::expectException(NotNormalizableValueException::class); }