Satini_pvduc

update

...@@ -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
......