From c3c6f3c8d3f8bf9d1d0971dd3dacfb07a10654e0 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 29 May 2021 10:40:47 +0000 Subject: [PATCH] Code style conventions --- src/Module/BaseApi.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Module/BaseApi.php b/src/Module/BaseApi.php index aca6070ae1..7735b9802c 100644 --- a/src/Module/BaseApi.php +++ b/src/Module/BaseApi.php @@ -141,7 +141,8 @@ class BaseApi extends BaseModule * * @return array request data */ - public static function getRequest(array $defaults) { + public static function getRequest(array $defaults) + { $httpinput = HTTPInputData::process(); $input = array_merge($httpinput['variables'], $httpinput['files'], $_REQUEST);