Update formatting in includes/dao/
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Wed, 20 Nov 2013 05:23:48 +0000 (06:23 +0100)
committerLegoktm <legoktm.wikipedia@gmail.com>
Wed, 20 Nov 2013 05:30:23 +0000 (05:30 +0000)
Change-Id: Id3cfc68ff463831d7cd3329661619c33d70d7085

includes/dao/DBAccessBase.php

index 6c009de..a9f7b7f 100644 (file)
@@ -28,7 +28,6 @@
  * @author Daniel Kinzler
  */
 abstract class DBAccessBase implements IDBAccessObject {
-
        /**
         * @var String|bool $wiki The target wiki's name. This must be an ID
         * that LBFactory can understand.
@@ -58,6 +57,7 @@ abstract class DBAccessBase implements IDBAccessObject {
         */
        protected function getConnection( $id, $groups = array() ) {
                $loadBalancer = wfGetLB( $this->wiki );
+
                return $loadBalancer->getConnection( $id, $groups, $this->wiki );
        }
 
@@ -68,7 +68,7 @@ abstract class DBAccessBase implements IDBAccessObject {
         *
         * @since 1.21
         *
-        * @param DatabaseBase  $db the database connection to release.
+        * @param DatabaseBase $db the database connection to release.
         */
        protected function releaseConnection( DatabaseBase $db ) {
                if ( $this->wiki !== false ) {