From 02a15e03f7f3501bc3cc48786b95f8874a86ddf3 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 16 Dec 2020 10:37:34 +0100 Subject: [PATCH] Fix phpunit --- test/phpunit/RestAPIDocumentTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/phpunit/RestAPIDocumentTest.php b/test/phpunit/RestAPIDocumentTest.php index f45e0437ce5..e38f1fbae12 100644 --- a/test/phpunit/RestAPIDocumentTest.php +++ b/test/phpunit/RestAPIDocumentTest.php @@ -173,7 +173,7 @@ class RestAPIDocumentTest extends PHPUnit\Framework\TestCase ); $param = ''; - foreach($data as $key => $val) { + foreach ($data as $key => $val) { $param .= '&'.$key.'='.urlencode($val); } @@ -203,7 +203,7 @@ class RestAPIDocumentTest extends PHPUnit\Framework\TestCase ); $param = ''; - foreach($data as $key => $val) { + foreach ($data as $key => $val) { $param .= '&'.$key.'='.urlencode($val); } @@ -231,7 +231,7 @@ class RestAPIDocumentTest extends PHPUnit\Framework\TestCase ); $param = ''; - foreach($data as $key => $val) { + foreach ($data as $key => $val) { $param .= '&'.$key.'='.urlencode($val); }