We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec5ccb6 commit 0fa436bCopy full SHA for 0fa436b
src/Kernel/UnicodeVersion.php
@@ -34,7 +34,7 @@ public static function set(string $version): void
34
35
private static function doRefine(?string $version): string
36
{
37
- if (self::LATEST === $version || null === $version) {
+ if ($version === self::LATEST || $version === null) {
38
$version = self::latest();
39
}
40
0 commit comments