Convert all array() syntax to []
[lhc/web/wiklou.git] / includes / upload / UploadFromChunks.php
index fe8b949..d82a9e6 100644 (file)
@@ -122,7 +122,7 @@ class UploadFromChunks extends UploadFromFile {
                        $this->getOffset() . ' inx:' . $chunkIndex . "\n" );
 
                // Concatenate all the chunks to mVirtualTempPath
-               $fileList = array();
+               $fileList = [];
                // The first chunk is stored at the mVirtualTempPath path so we start on "chunk 1"
                for ( $i = 0; $i <= $chunkIndex; $i++ ) {
                        $fileList[] = $this->getVirtualChunkLocation( $i );
@@ -239,12 +239,12 @@ class UploadFromChunks extends UploadFromFile {
                // storage, which takes time for large files. We don't want to hold locks then.
                $dbw->update(
                        'uploadstash',
-                       array(
+                       [
                                'us_status' => 'chunks',
                                'us_chunk_inx' => $this->getChunkIndex(),
                                'us_size' => $this->getOffset()
-                       ),
-                       array( 'us_key' => $this->mFileKey ),
+                       ],
+                       [ 'us_key' => $this->mFileKey ],
                        __METHOD__
                );
                $dbw->commit( __METHOD__, 'flush' );
@@ -259,12 +259,12 @@ class UploadFromChunks extends UploadFromFile {
                $dbw = $this->repo->getMasterDb();
                $row = $dbw->selectRow(
                        'uploadstash',
-                       array(
+                       [
                                'us_chunk_inx',
                                'us_size',
                                'us_path',
-                       ),
-                       array( 'us_key' => $this->mFileKey ),
+                       ],
+                       [ 'us_key' => $this->mFileKey ],
                        __METHOD__
                );
                // Handle result:
@@ -323,7 +323,7 @@ class UploadFromChunks extends UploadFromFile {
                                $error = $storeStatus->getWarningsArray();
                                $error = reset( $error );
                                if ( !count( $error ) ) {
-                                       $error = array( 'unknown', 'no error recorded' );
+                                       $error = [ 'unknown', 'no error recorded' ];
                                }
                        }
                        throw new UploadChunkFileException( "Error storing file in '$chunkPath': " .