Skip to content

Commit 3bfb7d8

Browse files
authored
lower value of enum
1 parent a99cb1d commit 3bfb7d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EnumStatic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private static function getEnumsCached(): array
6565
{
6666
if (!isset(self::$lists[static::class])) {
6767
foreach (static::getEnums() as $value) {
68-
self::$lists[static::class][$value] = true;
68+
self::$lists[static::class][strtolower($value)] = true;
6969
}
7070
}
7171

0 commit comments

Comments
 (0)