From: Amir E. Aharoni Date: Sat, 26 Sep 2015 09:51:03 +0000 (+0300) Subject: WebRequest.php: Make lines shorter to make phpcs happier X-Git-Tag: 1.31.0-rc.0~9809 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=d928aac86c5583b1906ff915bf87e485720f00bd;p=lhc%2Fweb%2Fwiklou.git WebRequest.php: Make lines shorter to make phpcs happier Change-Id: Icdc91bc32c526065009b18ece34205aa765cfd46 --- 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 ) {