jenkins-bot has submitted this change and it was merged.

Change subject: Fixed spacing
......................................................................


Fixed spacing

- Added/removed spaces around parenthesis
- Added newline in empty blocks
- Added space after switch/foreach/function
- Use tabs at begin of line
- Add newline at end of file

Change-Id: I244cdb2c333489e1020931bf4ac5266a87439f0d
---
M includes/CdbCompat.php
M includes/PrefixSearch.php
M includes/Status.php
M includes/api/ApiOpenSearch.php
M includes/api/ApiQuerySearch.php
M includes/cache/LocalisationCache.php
M includes/db/Database.php
M includes/db/LBFactory.php
M includes/filebackend/FSFileBackend.php
M includes/installer/DatabaseUpdater.php
M includes/installer/WebInstallerOutput.php
M includes/media/Bitmap.php
M includes/parser/MWTidy.php
M includes/parser/Parser.php
M includes/profiler/ProfilerStandard.php
M includes/profiler/ProfilerStub.php
M includes/profiler/ProfilerXhprof.php
M includes/profiler/SectionProfiler.php
M includes/profiler/output/ProfilerOutputDb.php
M includes/profiler/output/ProfilerOutputText.php
M includes/profiler/output/ProfilerOutputUdp.php
M includes/site/SiteListFileCache.php
M includes/site/SiteListFileCacheBuilder.php
M includes/utils/AutoloadGenerator.php
M maintenance/backupTextPass.inc
M tests/phpunit/includes/PrefixSearchTest.php
M tests/phpunit/includes/db/DatabaseSqliteTest.php
M tests/phpunit/includes/media/FormatMetadataTest.php
M tests/phpunit/maintenance/backupTextPassTest.php
29 files changed, 61 insertions(+), 57 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/includes/CdbCompat.php b/includes/CdbCompat.php
index 0c00b39..0074cc9 100644
--- a/includes/CdbCompat.php
+++ b/includes/CdbCompat.php
@@ -29,14 +29,17 @@
 /**
  * @deprecated since 1.25
  */
-abstract class CdbReader extends \Cdb\Reader {}
+abstract class CdbReader extends \Cdb\Reader {
+}
 
 /**
  * @deprecated since 1.25
  */
-abstract class CdbWriter extends \Cdb\Writer {}
+abstract class CdbWriter extends \Cdb\Writer {
+}
 
 /**
  * @deprecated since 1.25
  */
-class CdbException extends \Cdb\Exception {}
+class CdbException extends \Cdb\Exception {
+}
diff --git a/includes/PrefixSearch.php b/includes/PrefixSearch.php
index a4e64ee..4df6a9e 100644
--- a/includes/PrefixSearch.php
+++ b/includes/PrefixSearch.php
@@ -199,19 +199,19 @@
                                return $this->pullFront( $key, $srchres );
                        }
                        $redirectTargetsToRedirect = 
$this->redirectTargetsToRedirect( $srchres );
-                       if ( isset( $redirectTargetsToRedirect[ $target ] ) ) {
+                       if ( isset( $redirectTargetsToRedirect[$target] ) ) {
                                // The exact match and something in the results 
list are both redirects
                                // to the same thing!  In this case we'll pull 
the returned match to the
                                // top following the same logic above.  Again, 
it might not be a perfect
                                // choice but it'll do.
-                               return $this->pullFront( 
$redirectTargetsToRedirect[ $target ], $srchres );
+                               return $this->pullFront( 
$redirectTargetsToRedirect[$target], $srchres );
                        }
                } else {
                        $redirectTargetsToRedirect = 
$this->redirectTargetsToRedirect( $srchres );
-                       if ( isset( $redirectTargetsToRedirect[ $string ] ) ) {
+                       if ( isset( $redirectTargetsToRedirect[$string] ) ) {
                                // The exact match is the target of a redirect 
already in the results list so remove
                                // the redirect from the results list and push 
the exact match to the front
-                               array_splice( $srchres, 
$redirectTargetsToRedirect[ $string ], 1 );
+                               array_splice( $srchres, 
$redirectTargetsToRedirect[$string], 1 );
                                array_unshift( $srchres, $string );
                                return $srchres;
                        }
@@ -242,7 +242,7 @@
                        if ( !$target ) {
                                continue;
                        }
-                       $result[ $target ] = $key;
+                       $result[$target] = $key;
                }
                return $result;
        }
diff --git a/includes/Status.php b/includes/Status.php
index 265eae1..fb267bd 100644
--- a/includes/Status.php
+++ b/includes/Status.php
@@ -469,7 +469,7 @@
        public function __toString() {
                $status = $this->isOK() ? "OK" : "Error";
                if ( count( $this->errors ) ) {
-                       $errorcount = "collected " . ( count($this->errors) ) . 
" error(s) on the way";
+                       $errorcount = "collected " . ( count( $this->errors ) ) 
. " error(s) on the way";
                } else {
                        $errorcount = "no errors detected";
                }
@@ -486,16 +486,16 @@
                        $errorcount,
                        $valstr
                );
-               if ( count ($this->errors ) > 0 ) {
+               if ( count( $this->errors ) > 0 ) {
                        $hdr = sprintf( "+-%'-4s-+-%'-25s-+-%'-40s-+\n", "", 
"", "" );
                        $i = 1;
                        $out .= "\n";
                        $out .= $hdr;
-                       foreach( $this->getStatusArray() as $stat ) {
+                       foreach ( $this->getStatusArray() as $stat ) {
                                $out .= sprintf( "| %4d | %-25.25s | %-40.40s 
|\n",
                                        $i,
                                        $stat[0],
-                                       implode(" ", array_slice( $stat, 1 ) )
+                                       implode( " ", array_slice( $stat, 1 ) )
                                );
                                $i += 1;
                        }
diff --git a/includes/api/ApiOpenSearch.php b/includes/api/ApiOpenSearch.php
index 4a9e216..2235ba9 100644
--- a/includes/api/ApiOpenSearch.php
+++ b/includes/api/ApiOpenSearch.php
@@ -59,7 +59,7 @@
        }
 
        public function getCustomPrinter() {
-               switch( $this->getFormat() ) {
+               switch ( $this->getFormat() ) {
                        case 'json':
                                return $this->getMain()->createPrinterByName( 
'json' . $this->fm );
 
diff --git a/includes/api/ApiQuerySearch.php b/includes/api/ApiQuerySearch.php
index c6999df..16a491e 100644
--- a/includes/api/ApiQuerySearch.php
+++ b/includes/api/ApiQuerySearch.php
@@ -206,7 +206,7 @@
                $hasInterwikiResults = false;
                $totalhits = null;
                if ( $interwiki && $resultPageSet === null && 
$matches->hasInterwikiResults() ) {
-                       foreach( $matches->getInterwikiResults() as $matches ) {
+                       foreach ( $matches->getInterwikiResults() as $matches ) 
{
                                $matches = $matches->getInterwikiResults();
                                $hasInterwikiResults = true;
 
diff --git a/includes/cache/LocalisationCache.php 
b/includes/cache/LocalisationCache.php
index 7d5450e..c79d008 100644
--- a/includes/cache/LocalisationCache.php
+++ b/includes/cache/LocalisationCache.php
@@ -23,6 +23,7 @@
 use Cdb\Exception as CdbException;
 use Cdb\Reader as CdbReader;
 use Cdb\Writer as CdbWriter;
+
 /**
  * Class for caching the contents of localisation files, Messages*.php
  * and *.i18n.php.
diff --git a/includes/db/Database.php b/includes/db/Database.php
index 6c53f6a..edce918 100644
--- a/includes/db/Database.php
+++ b/includes/db/Database.php
@@ -1003,7 +1003,7 @@
                if ( $queryProf != '' ) {
                        $queryStartTime = microtime( true );
                        $queryProfile = new ScopedCallback(
-                               function() use ( $queryStartTime, $queryProf, 
$isMaster ) {
+                               function () use ( $queryStartTime, $queryProf, 
$isMaster ) {
                                        $trxProfiler = 
Profiler::instance()->getTransactionProfiler();
                                        $trxProfiler->recordQueryCompletion( 
$queryProf, $queryStartTime, $isMaster );
                                }
diff --git a/includes/db/LBFactory.php b/includes/db/LBFactory.php
index e049a5d..fdf1703 100644
--- a/includes/db/LBFactory.php
+++ b/includes/db/LBFactory.php
@@ -172,7 +172,7 @@
         * @param array $args
         */
        private function forEachLBCallMethod( $methodName, array $args = 
array() ) {
-               $this->forEachLB( function( LoadBalancer $loadBalancer, 
$methodName, array $args ) {
+               $this->forEachLB( function ( LoadBalancer $loadBalancer, 
$methodName, array $args ) {
                        call_user_func_array( array( $loadBalancer, $methodName 
), $args );
                }, array( $methodName, $args ) );
        }
diff --git a/includes/filebackend/FSFileBackend.php 
b/includes/filebackend/FSFileBackend.php
index 9aa4ca8..c00fb81 100644
--- a/includes/filebackend/FSFileBackend.php
+++ b/includes/filebackend/FSFileBackend.php
@@ -454,10 +454,10 @@
                        wfDebugLog( 'FSFileBackend', __METHOD__ . ": cannot 
create directory $dir" );
                        $status->fatal( 'directorycreateerror', $params['dir'] 
); // fails on races
                } elseif ( !is_writable( $dir ) ) {
-                       wfDebugLog( 'FSFileBackend',  __METHOD__ . ": directory 
$dir is read-only" );
+                       wfDebugLog( 'FSFileBackend', __METHOD__ . ": directory 
$dir is read-only" );
                        $status->fatal( 'directoryreadonlyerror', 
$params['dir'] );
                } elseif ( !is_readable( $dir ) ) {
-                       wfDebugLog( 'FSFileBackend',  __METHOD__ . ": directory 
$dir is not readable" );
+                       wfDebugLog( 'FSFileBackend', __METHOD__ . ": directory 
$dir is not readable" );
                        $status->fatal( 'directorynotreadableerror', 
$params['dir'] );
                }
                $this->untrapWarnings();
diff --git a/includes/installer/DatabaseUpdater.php 
b/includes/installer/DatabaseUpdater.php
index a5540db..c34d09e 100644
--- a/includes/installer/DatabaseUpdater.php
+++ b/includes/installer/DatabaseUpdater.php
@@ -1073,7 +1073,7 @@
                        $out = $wgProfiler['output'];
                        if ( $out === 'db' ) {
                                $profileToDb = true;
-                       } elseif( is_array( $out ) && in_array( 'db', $out ) ) {
+                       } elseif ( is_array( $out ) && in_array( 'db', $out ) ) 
{
                                $profileToDb = true;
                        }
                }
diff --git a/includes/installer/WebInstallerOutput.php 
b/includes/installer/WebInstallerOutput.php
index 8ff3d2f..44ca7d3 100644
--- a/includes/installer/WebInstallerOutput.php
+++ b/includes/installer/WebInstallerOutput.php
@@ -298,7 +298,7 @@
        </div>
 <?php
        $message = wfMessage( 'config-sidebar' )->plain();
-       foreach( explode( '----', $message ) as $section ) {
+       foreach ( explode( '----', $message ) as $section ) {
                echo '<div class="portal"><div class="body">';
                echo $this->parent->parse( $section, true );
                echo '</div></div>';
diff --git a/includes/media/Bitmap.php b/includes/media/Bitmap.php
index 0292af8..3c23ab9 100644
--- a/includes/media/Bitmap.php
+++ b/includes/media/Bitmap.php
@@ -344,7 +344,7 @@
 
                $src_image = call_user_func( $loader, $params['srcPath'] );
 
-               $rotation = function_exists( 'imagerotate' ) && !isset( 
$params['disableRotation'] )  ? $this->getRotation( $image ) : 0;
+               $rotation = function_exists( 'imagerotate' ) && !isset( 
$params['disableRotation'] ) ? $this->getRotation( $image ) : 0;
                list( $width, $height ) = $this->extractPreRotationDimensions( 
$params, $rotation );
                $dst_image = imagecreatetruecolor( $width, $height );
 
diff --git a/includes/parser/MWTidy.php b/includes/parser/MWTidy.php
index ff62e9b..3cb35f7 100644
--- a/includes/parser/MWTidy.php
+++ b/includes/parser/MWTidy.php
@@ -172,7 +172,7 @@
                if ( $wgTidyInternal ) {
                        if ( wfIsHHVM() ) {
                                if ( $stderr ) {
-                                       throw new MWException( __METHOD__.": 
error text return from HHVM tidy is not supported" );
+                                       throw new MWException( __METHOD__ . ": 
error text return from HHVM tidy is not supported" );
                                }
                                return self::hhvmClean( $text, $retval );
                        } else {
diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php
index 1b926c4..7ea57be 100644
--- a/includes/parser/Parser.php
+++ b/includes/parser/Parser.php
@@ -532,14 +532,14 @@
 
                        // Add on template profiling data
                        $dataByFunc = $this->mProfiler->getFunctionStats();
-                       uasort( $dataByFunc, function( $a, $b ) {
+                       uasort( $dataByFunc, function ( $a, $b ) {
                                return $a['real'] < $b['real']; // descending 
order
                        } );
                        $profileReport = "Transclusion expansion time report 
(%,ms,calls,template)\n";
                        foreach ( array_slice( $dataByFunc, 0, 10 ) as $item ) {
                                $profileReport .= sprintf( "%6.2f%% %8.3f %6d - 
%s\n",
                                        $item['%real'], $item['real'], 
$item['calls'],
-                                       htmlspecialchars($item['name'] ) );
+                                       htmlspecialchars( $item['name'] ) );
                        }
                        $text .= "\n<!-- \n$profileReport-->\n";
 
diff --git a/includes/profiler/ProfilerStandard.php 
b/includes/profiler/ProfilerStandard.php
index 87706e6..ffcd7d9 100644
--- a/includes/profiler/ProfilerStandard.php
+++ b/includes/profiler/ProfilerStandard.php
@@ -222,7 +222,7 @@
                $this->profileIn( $section );
 
                $that = $this;
-               return new ScopedCallback( function() use ( $that, $section ) {
+               return new ScopedCallback( function () use ( $that, $section ) {
                        $that->profileOut( $section );
                } );
        }
diff --git a/includes/profiler/ProfilerStub.php 
b/includes/profiler/ProfilerStub.php
index 2db06e4..9a7ec8c 100644
--- a/includes/profiler/ProfilerStub.php
+++ b/includes/profiler/ProfilerStub.php
@@ -34,7 +34,7 @@
        }
 
        public function scopedProfileIn( $section ) {
-               return new ScopedCallback( function() {
+               return new ScopedCallback( function () {
                        // no-op
                } );
        }
diff --git a/includes/profiler/ProfilerXhprof.php 
b/includes/profiler/ProfilerXhprof.php
index d91b429..a4a7b30 100644
--- a/includes/profiler/ProfilerXhprof.php
+++ b/includes/profiler/ProfilerXhprof.php
@@ -126,12 +126,12 @@
 
                if ( $exists ) {
                        xhprof_frame_begin( $section );
-                       return new ScopedCallback( function() {
+                       return new ScopedCallback( function () {
                                xhprof_frame_end();
                        } );
                }
 
-               return new ScopedCallback( function() {
+               return new ScopedCallback( function () {
                        // no-op
                } );
        }
diff --git a/includes/profiler/SectionProfiler.php 
b/includes/profiler/SectionProfiler.php
index 89eebbe..5591c99 100644
--- a/includes/profiler/SectionProfiler.php
+++ b/includes/profiler/SectionProfiler.php
@@ -59,7 +59,7 @@
                $this->profileInInternal( $section );
 
                $that = $this;
-               return new ScopedCallback( function() use ( $that, $section ) {
+               return new ScopedCallback( function () use ( $that, $section ) {
                        $that->profileOutInternal( $section );
                } );
        }
diff --git a/includes/profiler/output/ProfilerOutputDb.php 
b/includes/profiler/output/ProfilerOutputDb.php
index ab42802..76d62d2 100644
--- a/includes/profiler/output/ProfilerOutputDb.php
+++ b/includes/profiler/output/ProfilerOutputDb.php
@@ -38,7 +38,7 @@
                // Initialize per-host profiling from config, back-compat if 
available
                if ( isset( $this->params['perHost'] ) ) {
                        $this->perHost = $this->params['perHost'];
-               } elseif( $wgProfilePerHost ) {
+               } elseif ( $wgProfilePerHost ) {
                        $this->perHost = $wgProfilePerHost;
                }
        }
diff --git a/includes/profiler/output/ProfilerOutputText.php 
b/includes/profiler/output/ProfilerOutputText.php
index b24bbef..d37d74f 100644
--- a/includes/profiler/output/ProfilerOutputText.php
+++ b/includes/profiler/output/ProfilerOutputText.php
@@ -43,11 +43,11 @@
 
                        // Filter out really tiny entries
                        $min = $this->thresholdMs;
-                       $stats = array_filter( $stats, function( $a ) use ( 
$min ) {
+                       $stats = array_filter( $stats, function ( $a ) use ( 
$min ) {
                                return $a['real'] > $min;
                        } );
                        // Sort descending by time elapsed
-                       usort( $stats, function( $a, $b ) {
+                       usort( $stats, function ( $a, $b ) {
                                return $a['real'] < $b['real'];
                        } );
 
diff --git a/includes/profiler/output/ProfilerOutputUdp.php 
b/includes/profiler/output/ProfilerOutputUdp.php
index d5c7e5c..7da03c1 100644
--- a/includes/profiler/output/ProfilerOutputUdp.php
+++ b/includes/profiler/output/ProfilerOutputUdp.php
@@ -45,19 +45,19 @@
                // Initialize port, host, and format from config, back-compat 
if available
                if ( isset( $this->params['udpport'] ) ) {
                        $this->port = $this->params['udpport'];
-               } elseif( $wgUDPProfilerPort ) {
+               } elseif ( $wgUDPProfilerPort ) {
                        $this->port = $wgUDPProfilerPort;
                }
 
                if ( isset( $this->params['udphost'] ) ) {
                        $this->host = $this->params['udphost'];
-               } elseif( $wgUDPProfilerHost ) {
+               } elseif ( $wgUDPProfilerHost ) {
                        $this->host = $wgUDPProfilerHost;
                }
 
                if ( isset( $this->params['udpformat'] ) ) {
                        $this->format = $this->params['udpformat'];
-               } elseif( $wgUDPProfilerFormatString ) {
+               } elseif ( $wgUDPProfilerFormatString ) {
                        $this->format = $wgUDPProfilerFormatString;
                }
        }
diff --git a/includes/site/SiteListFileCache.php 
b/includes/site/SiteListFileCache.php
index c0ecab1..f2a95a8 100644
--- a/includes/site/SiteListFileCache.php
+++ b/includes/site/SiteListFileCache.php
@@ -72,7 +72,7 @@
                $sites = new SiteList();
 
                // @todo lazy initialize the site objects in the site list 
(e.g. only when needed to access)
-               foreach( $data['sites'] as $siteArray ) {
+               foreach ( $data['sites'] as $siteArray ) {
                        $sites[] = $this->newSiteFromArray( $siteArray );
                }
 
@@ -116,7 +116,7 @@
                $site->setExtraData( $data['data'] );
                $site->setExtraConfig( $data['config'] );
 
-               foreach( $data['identifiers'] as $identifier ) {
+               foreach ( $data['identifiers'] as $identifier ) {
                        $site->addLocalId( $identifier['type'], 
$identifier['key'] );
                }
 
diff --git a/includes/site/SiteListFileCacheBuilder.php 
b/includes/site/SiteListFileCacheBuilder.php
index 0a71aae..7307a6f 100644
--- a/includes/site/SiteListFileCacheBuilder.php
+++ b/includes/site/SiteListFileCacheBuilder.php
@@ -81,7 +81,7 @@
                $siteIdentifiers = $this->buildLocalIdentifiers( $site );
                $identifiersArray = array();
 
-               foreach( $siteIdentifiers as $identifier ) {
+               foreach ( $siteIdentifiers as $identifier ) {
                        $identifiersArray[] = $identifier;
                }
 
diff --git a/includes/utils/AutoloadGenerator.php 
b/includes/utils/AutoloadGenerator.php
index 727f485..4e65e11 100644
--- a/includes/utils/AutoloadGenerator.php
+++ b/includes/utils/AutoloadGenerator.php
@@ -227,7 +227,7 @@
                if ( is_string( $token ) ) {
                        return;
                }
-               switch( $token[0] ) {
+               switch ( $token[0] ) {
                case T_NAMESPACE:
                case T_CLASS:
                case T_INTERFACE:
@@ -241,7 +241,7 @@
         * @param array
         */
        protected function tryEndExpect( $token ) {
-               switch( $this->startToken[0] ) {
+               switch ( $this->startToken[0] ) {
                case T_NAMESPACE:
                        if ( $token === ';' || $token === '{' ) {
                                $this->namespace = $this->implodeTokens() . 
'\\';
diff --git a/maintenance/backupTextPass.inc b/maintenance/backupTextPass.inc
index f13cb44..85ebd51 100644
--- a/maintenance/backupTextPass.inc
+++ b/maintenance/backupTextPass.inc
@@ -895,10 +895,10 @@
                                $this->thisPage .= $data;
                        }
                }
-               elseif ( $this->lastName == "model"  ) {
+               elseif ( $this->lastName == "model" ) {
                        $this->thisRevModel .= $data;
                }
-               elseif ( $this->lastName == "format"  ) {
+               elseif ( $this->lastName == "format" ) {
                        $this->thisRevFormat .= $data;
                }
 
diff --git a/tests/phpunit/includes/PrefixSearchTest.php 
b/tests/phpunit/includes/PrefixSearchTest.php
index d0f6208..e737056 100644
--- a/tests/phpunit/includes/PrefixSearchTest.php
+++ b/tests/phpunit/includes/PrefixSearchTest.php
@@ -42,12 +42,12 @@
                $this->insertPage( 'Example Foo/Bar' );
                $this->insertPage( 'Example/Baz' );
                $this->insertPage( 'Redirect test', '#REDIRECT [[Redirect 
Test]]' );
-               $this->insertPage( 'Redirect Test');
-               $this->insertPage( 'Redirect Test Worse Result');
+               $this->insertPage( 'Redirect Test' );
+               $this->insertPage( 'Redirect Test Worse Result' );
                $this->insertPage( 'Redirect test2', '#REDIRECT [[Redirect 
Test2]]' );
                $this->insertPage( 'Redirect TEST2', '#REDIRECT [[Redirect 
Test2]]' );
-               $this->insertPage( 'Redirect Test2');
-               $this->insertPage( 'Redirect Test2 Worse Result');
+               $this->insertPage( 'Redirect Test2' );
+               $this->insertPage( 'Redirect Test2 Worse Result' );
 
                $this->insertPage( 'Talk:Sandbox' );
                $this->insertPage( 'Talk:Example' );
@@ -171,7 +171,7 @@
                array_shift( $case['results'] );
                // And sometimes we expect a different last result
                $expected = isset( $case['offsetresult'] ) ?
-                       array_merge( $case['results'], $case['offsetresult'] ):
+                       array_merge( $case['results'], $case['offsetresult'] ) :
                        $case['results'];
 
                $this->assertEquals(
diff --git a/tests/phpunit/includes/db/DatabaseSqliteTest.php 
b/tests/phpunit/includes/db/DatabaseSqliteTest.php
index 588e544..d32c1a6 100644
--- a/tests/phpunit/includes/db/DatabaseSqliteTest.php
+++ b/tests/phpunit/includes/db/DatabaseSqliteTest.php
@@ -297,7 +297,7 @@
                        $out = $wgProfiler['output'];
                        if ( $out === 'db' ) {
                                $profileToDb = true;
-                       } elseif( is_array( $out ) && in_array( 'db', $out ) ) {
+                       } elseif ( is_array( $out ) && in_array( 'db', $out ) ) 
{
                                $profileToDb = true;
                        }
                }
diff --git a/tests/phpunit/includes/media/FormatMetadataTest.php 
b/tests/phpunit/includes/media/FormatMetadataTest.php
index 97aa0a3..54758f9 100644
--- a/tests/phpunit/includes/media/FormatMetadataTest.php
+++ b/tests/phpunit/includes/media/FormatMetadataTest.php
@@ -90,14 +90,14 @@
                        'multiValue' => array( array( 'first', 'second', 
'third', '_type' => 'ol' ), 'first' ),
                        'noType' => array( array( 'first', 'second', 'third' ), 
'first' ),
                        'typeFirst' => array( array( '_type' => 'ol', 'first', 
'second', 'third' ), 'first' ),
-                   'multilang' => array(
-                           array( 'en' => 'first', 'de' => 'Erste', '_type' => 
'lang' ),
-                           array( 'en' => 'first', 'de' => 'Erste', '_type' => 
'lang' ),
-                   ),
-                   'multilang-multivalue' => array(
-                           array( 'en' => array( 'first', 'second' ), 'de' => 
array( 'Erste', 'Zweite' ), '_type' => 'lang' ),
-                           array( 'en' => 'first', 'de' => 'Erste', '_type' => 
'lang' ),
-                   ),
+                       'multilang' => array(
+                               array( 'en' => 'first', 'de' => 'Erste', 
'_type' => 'lang' ),
+                               array( 'en' => 'first', 'de' => 'Erste', 
'_type' => 'lang' ),
+                       ),
+                       'multilang-multivalue' => array(
+                               array( 'en' => array( 'first', 'second' ), 'de' 
=> array( 'Erste', 'Zweite' ), '_type' => 'lang' ),
+                               array( 'en' => 'first', 'de' => 'Erste', 
'_type' => 'lang' ),
+                       ),
                );
        }
 }
diff --git a/tests/phpunit/maintenance/backupTextPassTest.php 
b/tests/phpunit/maintenance/backupTextPassTest.php
index 26662d5..6ef2e23 100644
--- a/tests/phpunit/maintenance/backupTextPassTest.php
+++ b/tests/phpunit/maintenance/backupTextPassTest.php
@@ -608,4 +608,4 @@
                return strtoupper( $text );
        }
 
-}
\ No newline at end of file
+}

-- 
To view, visit https://gerrit.wikimedia.org/r/176292
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I244cdb2c333489e1020931bf4ac5266a87439f0d
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Umherirrender <[email protected]>
Gerrit-Reviewer: Aaron Schulz <[email protected]>
Gerrit-Reviewer: Anomie <[email protected]>
Gerrit-Reviewer: Cscott <[email protected]>
Gerrit-Reviewer: Jackmcbarn <[email protected]>
Gerrit-Reviewer: Parent5446 <[email protected]>
Gerrit-Reviewer: Umherirrender <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to