From: Amir E. Aharoni Date: Sat, 26 Sep 2015 13:06:47 +0000 (+0300) Subject: SpecialSearchTest.php: Make lines shorter to make phpcs happier X-Git-Tag: 1.31.0-rc.0~9807 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=51f6dca4aa61280b9fa8e750241f21eaec85e5ef;p=lhc%2Fweb%2Fwiklou.git SpecialSearchTest.php: Make lines shorter to make phpcs happier Also fixes a "Single space expected before closing parenthesis" failure. Change-Id: Id35e490e7d17ee58b643e9f74583afcef62145c2 --- diff --git a/tests/phpunit/includes/specials/SpecialSearchTest.php b/tests/phpunit/includes/specials/SpecialSearchTest.php index 13c283816d..df9b55232f 100644 --- a/tests/phpunit/includes/specials/SpecialSearchTest.php +++ b/tests/phpunit/includes/specials/SpecialSearchTest.php @@ -207,7 +207,12 @@ class SpecialSearchTestMockResultSet extends SearchResultSet { protected $results; protected $suggestion; - public function __construct( $suggestion = null, $rewrittenQuery = null, array $results = array(), $containedSyntax = false) { + public function __construct( + $suggestion = null, + $rewrittenQuery = null, + array $results = array(), + $containedSyntax = false + ) { $this->suggestion = $suggestion; $this->rewrittenQuery = $rewrittenQuery; $this->results = $results;