Merge "Ensure users are able to edit the page after changing the content model"
[lhc/web/wiklou.git] / includes / filerepo / ForeignDBViaLBRepo.php
index 357f0b9..55df1af 100644 (file)
@@ -37,10 +37,13 @@ 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' ];
+
+       /** @var bool */
+       protected $hasSharedCache;
 
        /**
         * @param array|null $info
@@ -56,14 +59,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_REPLICA, [], $this->wiki );
        }
 
        /**
@@ -72,7 +75,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 );
                };
        }