From: Amir E. Aharoni Date: Tue, 3 Mar 2015 18:29:22 +0000 (+0200) Subject: Shorten long lines in PrefixSearch.php to make phpcs pass X-Git-Tag: 1.31.0-rc.0~12184^2 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_aide%28?a=commitdiff_plain;h=1e5e9696251e9d42296bb17e04a1e8292b182162;p=lhc%2Fweb%2Fwiklou.git Shorten long lines in PrefixSearch.php to make phpcs pass Change-Id: Ibf18835ff614e53887912b8e997a3230ed29dd68 --- diff --git a/includes/PrefixSearch.php b/includes/PrefixSearch.php index 2885679c47..55a4f49b34 100644 --- a/includes/PrefixSearch.php +++ b/includes/PrefixSearch.php @@ -155,7 +155,10 @@ abstract class PrefixSearch { } } $srchres = array(); - if ( Hooks::run( 'PrefixSearchBackend', array( $namespaces, $search, $limit, &$srchres, $offset ) ) ) { + if ( Hooks::run( + 'PrefixSearchBackend', + array( $namespaces, $search, $limit, &$srchres, $offset ) + ) ) { return $this->titles( $this->defaultSearchBackend( $namespaces, $search, $limit, $offset ) ); } return $this->strings( $this->handleResultFromHook( $srchres, $namespaces, $search, $limit ) );