From 1e5e9696251e9d42296bb17e04a1e8292b182162 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Tue, 3 Mar 2015 20:29:22 +0200 Subject: [PATCH] Shorten long lines in PrefixSearch.php to make phpcs pass Change-Id: Ibf18835ff614e53887912b8e997a3230ed29dd68 --- includes/PrefixSearch.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 ) ); -- 2.20.1