From 66178b26e9920fbc72b51a2c73509bf6f83a3416 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Wed, 11 Nov 2020 22:06:40 +0100 Subject: [PATCH] [ticket/10824] Move parenthesis to next line PHPBB3-10824 --- phpBB/phpbb/json/sanitizer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/phpbb/json/sanitizer.php b/phpBB/phpbb/json/sanitizer.php index e9294f41cf..4db1602055 100644 --- a/phpBB/phpbb/json/sanitizer.php +++ b/phpBB/phpbb/json/sanitizer.php @@ -33,7 +33,8 @@ class sanitizer { if (!empty($data)) { - $json_sanitizer = function (&$value) { + $json_sanitizer = function (&$value) + { $type_cast_helper = new type_cast_helper(); $type_cast_helper->set_var($value, $value, gettype($value), true); };