Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / filerepo / ForeignDBViaLBRepo.php
index 357f0b9..a59ca34 100644 (file)
@@ -37,10 +37,10 @@ class ForeignDBViaLBRepo extends LocalRepo {
        protected $tablePrefix;
 
        /** @var array */
-       protected $fileFactory = array( 'ForeignDBFile', 'newFromTitle' );
+       protected $fileFactory = [ 'ForeignDBFile', 'newFromTitle' ];
 
        /** @var array */
-       protected $fileFromRowFactory = array( 'ForeignDBFile', 'newFromRow' );
+       protected $fileFromRowFactory = [ 'ForeignDBFile', 'newFromRow' ];
 
        /**
         * @param array|null $info
@@ -56,14 +56,14 @@ class ForeignDBViaLBRepo extends LocalRepo {
         * @return IDatabase
         */
        function getMasterDB() {
-               return wfGetDB( DB_MASTER, array(), $this->wiki );
+               return wfGetDB( DB_MASTER, [], $this->wiki );
        }
 
        /**
         * @return IDatabase
         */
        function getSlaveDB() {
-               return wfGetDB( DB_SLAVE, array(), $this->wiki );
+               return wfGetDB( DB_SLAVE, [], $this->wiki );
        }
 
        /**
@@ -72,7 +72,7 @@ class ForeignDBViaLBRepo extends LocalRepo {
        protected function getDBFactory() {
                $wiki = $this->wiki;
                return function( $index ) use ( $wiki ) {
-                       return wfGetDB( $index, array(), $wiki );
+                       return wfGetDB( $index, [], $wiki );
                };
        }