From ca7bfcc8c6b5c3a035a6e6d52c9d4c95f2942d3a Mon Sep 17 00:00:00 2001 From: sunxyw Date: Tue, 29 Mar 2022 19:40:07 +0800 Subject: [PATCH] fix php7.2 compatibility --- tests/ZM/Utils/HttpUtilTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ZM/Utils/HttpUtilTest.php b/tests/ZM/Utils/HttpUtilTest.php index cd187e68..f8e5443b 100644 --- a/tests/ZM/Utils/HttpUtilTest.php +++ b/tests/ZM/Utils/HttpUtilTest.php @@ -61,7 +61,7 @@ class HttpUtilTest extends TestCase new RequestMapping('/test', 'test', RequestMethod::GET), __FUNCTION__, __CLASS__, - [], + [] ); $r = new Request(); $r->server['request_uri'] = '/test'; @@ -71,7 +71,7 @@ class HttpUtilTest extends TestCase null, '/test', $node, - $params, + $params )); } }