Skip to content

Commit 9f05530

Browse files
committed
Fix isLowerCase method casing. Ironically.
1 parent 8296080 commit 9f05530

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Modifiers/CoreModifiers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ public function isLeapYear($value)
997997
*/
998998
public function isLowercase($value)
999999
{
1000-
return Stringy::isLowercase($value);
1000+
return Stringy::isLowerCase($value);
10011001
}
10021002

10031003
/**

0 commit comments

Comments
 (0)