Rename Predis\Network\ConnectionCluster to Predis\Network\PredisCluster.

This commit is contained in:
Daniele Alessandri
2011-05-05 15:55:24 +02:00
parent 150795f999
commit 724543a4e6
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -5,9 +5,8 @@ namespace Predis;
use Predis\Commands\ICommand;
use Predis\Network\IConnection;
use Predis\Network\IConnectionSingle;
use Predis\Network\ConnectionCluster;
use Predis\Profiles\ServerProfile;
use Predis\Profiles\IServerProfile;
use Predis\Profiles\ServerProfile;
class Client {
const VERSION = '0.7.0-dev';
@@ -8,7 +8,7 @@ use Predis\Commands\ICommand;
use Predis\Distribution\IDistributionStrategy;
use Predis\Distribution\HashRing;
class ConnectionCluster implements IConnectionCluster, \IteratorAggregate {
class PredisCluster implements IConnectionCluster, \IteratorAggregate {
private $_pool, $_distributor;
public function __construct(IDistributionStrategy $distributor = null) {