From fb52e6af04e9c87ee2b31d74dfcb7b14bbe4f14a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 27 Apr 2015 17:57:36 +0530 Subject: Closing parenthesis of a multi-line function call must be on a line by itself Signed-off-by: Madhura Jayaratne --- js/get_scripts.js.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'js/get_scripts.js.php') diff --git a/js/get_scripts.js.php b/js/get_scripts.js.php index 61777297d9..c2cf8204b6 100644 --- a/js/get_scripts.js.php +++ b/js/get_scripts.js.php @@ -29,9 +29,11 @@ require_once './libraries/common.inc.php'; include_once './libraries/OutputBuffering.class.php'; $buffer = PMA_OutputBuffering::getInstance(); $buffer->start(); -register_shutdown_function(function() { - echo PMA_OutputBuffering::getInstance()->getContents(); -}); +register_shutdown_function( + function() { + echo PMA_OutputBuffering::getInstance()->getContents(); + } +); $_GET['scripts'] = json_decode($_GET['scripts']); if (! empty($_GET['scripts']) && is_array($_GET['scripts'])) { -- cgit v1.2.3