From d928aac86c5583b1906ff915bf87e485720f00bd Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sat, 26 Sep 2015 12:51:03 +0300 Subject: [PATCH] WebRequest.php: Make lines shorter to make phpcs happier Change-Id: Icdc91bc32c526065009b18ece34205aa765cfd46 --- includes/WebRequest.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/includes/WebRequest.php b/includes/WebRequest.php index b4b8be9b15..f402f3b869 100644 --- a/includes/WebRequest.php +++ b/includes/WebRequest.php @@ -315,7 +315,9 @@ class WebRequest { } } else { global $wgContLang; - $data = isset( $wgContLang ) ? $wgContLang->normalize( $data ) : UtfNormal\Validator::cleanUp( $data ); + $data = isset( $wgContLang ) ? + $wgContLang->normalize( $data ) : + UtfNormal\Validator::cleanUp( $data ); } return $data; } @@ -754,7 +756,8 @@ class WebRequest { * Appends or replaces value of query variables. * * @param array $array Array of values to replace/add to query - * @param bool $onlyquery Whether to only return the query string and not the complete URL [deprecated] + * @param bool $onlyquery Whether to only return the query string + * and not the complete URL [deprecated] * @return string */ public function appendQueryArray( $array, $onlyquery = true ) { -- 2.20.1