all public

This commit is contained in:
smiley
2016-02-08 13:50:06 +01:00
parent 3b36574219
commit 0fe303d37d
+3 -3
View File
@@ -91,7 +91,7 @@ class Util{
*
* @return bool
*/
protected static function isNumber($s){
public static function isNumber($s){
$len = strlen($s);
for($i = 0; $i < $len; $i++){
@@ -110,7 +110,7 @@ class Util{
*
* @return bool
*/
protected static function isAlphaNum($s){
public static function isAlphaNum($s){
$len = strlen($s);
for($i = 0; $i < $len; $i++){
@@ -129,7 +129,7 @@ class Util{
*
* @return bool
*/
protected static function isKanji($s){
public static function isKanji($s){
$i = 0;
$len = strlen($s);