From f08e4f02db85e87bf1c4cbb8f5cb07b2e8e4e70d Mon Sep 17 00:00:00 2001 From: Pavlo Yatsukhnenko Date: Tue, 7 Dec 2021 09:30:54 +0200 Subject: [PATCH] Fix 'PHP Deprecated: strtolower(): Passing null' warning --- tests/TestSuite.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/TestSuite.php b/tests/TestSuite.php index abf6957..a6043f0 100644 --- a/tests/TestSuite.php +++ b/tests/TestSuite.php @@ -222,7 +222,6 @@ class TestSuite private static function getMaxTestLen($arr_methods, $str_limit) { $i_result = 0; - $str_limit = strtolower($str_limit); foreach ($arr_methods as $obj_method) { $str_name = strtolower($obj_method->name);