aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>2018-11-07 15:31:30 +0000
committerGerrit Code Review <gerrit@wikimedia.org>2018-11-07 15:31:30 +0000
commitee00b6853b263f426da60a179357e39edc37bfd5 (patch)
tree82ec17d424829445f469f50c5ff417cd5b584827
parentd4cc4f2b4f20725725a9345c7a4b7906e5aa66d2 (diff)
parent633b6532fa4df83df61fc2c5b9003c1003e7af5b (diff)
downloadmediawikicore-ee00b6853b263f426da60a179357e39edc37bfd5.tar.gz
mediawikicore-ee00b6853b263f426da60a179357e39edc37bfd5.zip
Merge "Remove excessive indenting of parameters on newlines"
-rw-r--r--tests/phpunit/includes/shell/ShellTest.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/phpunit/includes/shell/ShellTest.php b/tests/phpunit/includes/shell/ShellTest.php
index bf46f44b0c67..3c0558380658 100644
--- a/tests/phpunit/includes/shell/ShellTest.php
+++ b/tests/phpunit/includes/shell/ShellTest.php
@@ -45,11 +45,12 @@ class ShellTest extends MediaWikiTestCase {
* @param string[] $options
* @param callable|null $hook
*/
- public function testMakeScriptCommand( $expected,
- $script,
- $parameters,
- $options = [],
- $hook = null
+ public function testMakeScriptCommand(
+ $expected,
+ $script,
+ $parameters,
+ $options = [],
+ $hook = null
) {
// Running tests under Vagrant involves MWMultiVersion that uses the below hook
$this->setMwGlobals( 'wgHooks', [] );