Convert all array() syntax to []
[lhc/web/wiklou.git] / maintenance / refreshImageMetadata.php
index 01fb15e..88767de 100644 (file)
@@ -104,15 +104,15 @@ class RefreshImageMetadata extends Maintenance {
                $conds = $this->getConditions( $dbw );
 
                // For the WHERE img_name > 'foo' condition that comes after doing a batch
-               $conds2 = array();
+               $conds2 = [];
                if ( $start !== false ) {
                        $conds2[] = 'img_name >= ' . $dbw->addQuotes( $start );
                }
 
-               $options = array(
+               $options = [
                        'LIMIT' => $this->mBatchSize,
                        'ORDER BY' => 'img_name ASC',
-               );
+               ];
 
                do {
                        $res = $dbw->select(
@@ -172,7 +172,7 @@ class RefreshImageMetadata extends Maintenance {
                                        }
                                }
                        }
-                       $conds2 = array( 'img_name > ' . $dbw->addQuotes( $row->img_name ) );
+                       $conds2 = [ 'img_name > ' . $dbw->addQuotes( $row->img_name ) ];
                        wfWaitForSlaves();
                } while ( $res->numRows() === $this->mBatchSize );
 
@@ -193,7 +193,7 @@ class RefreshImageMetadata extends Maintenance {
         * @return array
         */
        function getConditions( $dbw ) {
-               $conds = array();
+               $conds = [];
 
                $end = $this->getOption( 'end', false );
                $mime = $this->getOption( 'mime', false );