From c36388c60481fb82f16520e3f8e8075e4b255633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 6 Apr 2018 13:40:52 +0300 Subject: [PATCH] Php70: do not expose intArg intArg is used from Php70 only. make it private --- src/Php70/Php70.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Php70/Php70.php b/src/Php70/Php70.php index 8e78450..55cd94f 100644 --- a/src/Php70/Php70.php +++ b/src/Php70/Php70.php @@ -60,7 +60,7 @@ public static function error_clear_last() restore_error_handler(); } - public static function intArg($value, $caller, $pos) + private static function intArg($value, $caller, $pos) { if (is_int($value)) { return $value;