diff options
author | Amir E. Aharoni <amir.aharoni@mail.huji.ac.il> | 2015-10-03 16:04:51 +0300 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2015-10-03 17:13:29 +0000 |
commit | bfdd3369c26b10307c7e6f428aa03e2b38b9ec1d (patch) | |
tree | 6bf4739623c5e6c0840997e5d54178ee265c7a55 /tests/phpunit/includes/logging/ProtectLogFormatterTest.php | |
parent | c37d6549fdffc9b53485a25d9f820385ecd91a52 (diff) | |
download | mediawikicore-bfdd3369c26b10307c7e6f428aa03e2b38b9ec1d.tar.gz mediawikicore-bfdd3369c26b10307c7e6f428aa03e2b38b9ec1d.zip |
Fix Generic.Files.LineLength phpcs check in files under phpunit/includes
Bug: T102614
Change-Id: Iee3df5f064f595ecebe8210cc936bc3d20a122c9
Diffstat (limited to 'tests/phpunit/includes/logging/ProtectLogFormatterTest.php')
-rw-r--r-- | tests/phpunit/includes/logging/ProtectLogFormatterTest.php | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/tests/phpunit/includes/logging/ProtectLogFormatterTest.php b/tests/phpunit/includes/logging/ProtectLogFormatterTest.php index 718c08c43a8b..558c0fd547e7 100644 --- a/tests/phpunit/includes/logging/ProtectLogFormatterTest.php +++ b/tests/phpunit/includes/logging/ProtectLogFormatterTest.php @@ -37,7 +37,8 @@ class ProtectLogFormatterTest extends LogFormatterTestCase { ), ), array( - 'text' => 'User protected ProtectPage [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)', + 'text' => 'User protected ProtectPage [Edit=Allow only administrators] ' . + '(indefinite) [Move=Allow only administrators] (indefinite)', 'api' => array( 'description' => '[edit=sysop] (indefinite)[move=sysop] (indefinite)', 'cascade' => false, @@ -87,7 +88,8 @@ class ProtectLogFormatterTest extends LogFormatterTestCase { ), ), array( - 'text' => 'User protected ProtectPage [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [cascading]', + 'text' => 'User protected ProtectPage [Edit=Allow only administrators] ' . + '(indefinite) [Move=Allow only administrators] (indefinite) [cascading]', 'api' => array( 'description' => '[edit=sysop] (indefinite)[move=sysop] (indefinite)', 'cascade' => true, @@ -147,7 +149,8 @@ class ProtectLogFormatterTest extends LogFormatterTestCase { ), array( 'legacy' => true, - 'text' => 'User protected ProtectPage [edit=sysop] (indefinite)[move=sysop] (indefinite) [cascading]', + 'text' => 'User protected ProtectPage [edit=sysop] ' . + '(indefinite)[move=sysop] (indefinite) [cascading]', 'api' => array( 'description' => '[edit=sysop] (indefinite)[move=sysop] (indefinite)', 'cascade' => true, @@ -200,7 +203,9 @@ class ProtectLogFormatterTest extends LogFormatterTestCase { ), ), array( - 'text' => 'User changed protection level for ProtectPage [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)', + 'text' => 'User changed protection level for ProtectPage ' . + '[Edit=Allow only administrators] ' . + '(indefinite) [Move=Allow only administrators] (indefinite)', 'api' => array( 'description' => '[edit=sysop] (indefinite)[move=sysop] (indefinite)', 'cascade' => false, @@ -287,7 +292,8 @@ class ProtectLogFormatterTest extends LogFormatterTestCase { ), array( 'legacy' => true, - 'text' => 'User changed protection level for ProtectPage [edit=sysop] (indefinite)[move=sysop] (indefinite)', + 'text' => 'User changed protection level for ProtectPage ' . + '[edit=sysop] (indefinite)[move=sysop] (indefinite)', 'api' => array( 'description' => '[edit=sysop] (indefinite)[move=sysop] (indefinite)', 'cascade' => false, @@ -310,7 +316,8 @@ class ProtectLogFormatterTest extends LogFormatterTestCase { ), array( 'legacy' => true, - 'text' => 'User changed protection level for ProtectPage [edit=sysop] (indefinite)[move=sysop] (indefinite) [cascading]', + 'text' => 'User changed protection level for ProtectPage ' . + '[edit=sysop] (indefinite)[move=sysop] (indefinite) [cascading]', 'api' => array( 'description' => '[edit=sysop] (indefinite)[move=sysop] (indefinite)', 'cascade' => true, |