StringUtils.php 139 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 <?php namespace Pvduc\DaitoUtils; class StringUtils { public static function toUpper($text){ return strtoupper($text); } }