Merge "AuthManager: Break AuthPlugin::addUser more explicitly"
[lhc/web/wiklou.git] / tests / phpunit / includes / specials / QueryAllSpecialPagesTest.php
index 39462b4..061e598 100644 (file)
@@ -14,9 +14,9 @@
 class QueryAllSpecialPagesTest extends MediaWikiTestCase {
 
        /** List query pages that can not be tested automatically */
-       protected $manualTest = array(
+       protected $manualTest = [
                'LinkSearchPage'
-       );
+       ];
 
        /**
         * Pages whose query use the same DB table more than once.
@@ -24,9 +24,9 @@ class QueryAllSpecialPagesTest extends MediaWikiTestCase {
         * which does not support reopening a temporary table. See upstream bug:
         * http://bugs.mysql.com/bug.php?id=10327
         */
-       protected $reopensTempTable = array(
+       protected $reopensTempTable = [
                'BrokenRedirects',
-       );
+       ];
 
        /**
         * Initialize all query page objects
@@ -50,14 +50,14 @@ class QueryAllSpecialPagesTest extends MediaWikiTestCase {
                global $wgDBtype;
 
                foreach ( $this->queryPages as $page ) {
-
                        // With MySQL, skips special pages reopening a temporary table
                        // See http://bugs.mysql.com/bug.php?id=10327
                        if (
                                $wgDBtype === 'mysql'
                                && in_array( $page->getName(), $this->reopensTempTable )
                        ) {
-                               $this->markTestSkipped( "SQL query for page {$page->getName()} can not be tested on MySQL backend (it reopens a temporary table)" );
+                               $this->markTestSkipped( "SQL query for page {$page->getName()} "
+                                       . "can not be tested on MySQL backend (it reopens a temporary table)" );
                                continue;
                        }