Showing
1 changed file
with
3 additions
and
0 deletions
| ... | @@ -5,4 +5,7 @@ class StringUtils { | ... | @@ -5,4 +5,7 @@ class StringUtils { |
| 5 | public static function toUpper($text){ | 5 | public static function toUpper($text){ |
| 6 | return strtoupper($text); | 6 | return strtoupper($text); |
| 7 | } | 7 | } |
| 8 | + public static function toLower($text){ | ||
| 9 | + return strtolower($text); | ||
| 10 | + } | ||
| 8 | } | 11 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or sign in to post a comment