diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-07-28 11:52:48 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-07-28 11:52:48 +0200 |
commit | 222b01f5169f1c7e69762e0e8904c24f78f71882 (patch) | |
tree | 8e932e12546bb991357ec48eb1638d1770be7a35 /includes/db/LBFactory.php | |
parent | 00ab76a6b686e98a914afc1975812d2b1aaa7016 (diff) |
update to MediaWiki 1.16.0
Diffstat (limited to 'includes/db/LBFactory.php')
-rw-r--r-- | includes/db/LBFactory.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/includes/db/LBFactory.php b/includes/db/LBFactory.php index 3876d71f..10c87133 100644 --- a/includes/db/LBFactory.php +++ b/includes/db/LBFactory.php @@ -25,7 +25,7 @@ abstract class LBFactory { /** * Shut down, close connections and destroy the cached instance. - * + * */ static function destroyInstance() { if ( self::$instance ) { @@ -41,7 +41,7 @@ abstract class LBFactory { abstract function __construct( $conf ); /** - * Create a new load balancer object. The resulting object will be untracked, + * Create a new load balancer object. The resulting object will be untracked, * not chronology-protected, and the caller is responsible for cleaning it up. * * @param string $wiki Wiki ID, or false for the current wiki @@ -58,8 +58,8 @@ abstract class LBFactory { abstract function getMainLB( $wiki = false ); /* - * Create a new load balancer for external storage. The resulting object will be - * untracked, not chronology-protected, and the caller is responsible for + * Create a new load balancer for external storage. The resulting object will be + * untracked, not chronology-protected, and the caller is responsible for * cleaning it up. * * @param string $cluster External storage cluster, or false for core @@ -142,8 +142,8 @@ class LBFactory_Simple extends LBFactory { } return new LoadBalancer( array( - 'servers' => $servers, - 'masterWaitTimeout' => $wgMasterWaitTimeout + 'servers' => $servers, + 'masterWaitTimeout' => $wgMasterWaitTimeout )); } @@ -162,7 +162,7 @@ class LBFactory_Simple extends LBFactory { throw new MWException( __METHOD__.": Unknown cluster \"$cluster\"" ); } return new LoadBalancer( array( - 'servers' => $wgExternalServers[$cluster] + 'servers' => $wgExternalServers[$cluster] )); } |