Преглед изворни кода

Fix wrong namespace path for EmptyRingException.

Daniele Alessandri пре 15 година
родитељ
комит
658272fe4b
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -1588,7 +1588,7 @@ class HashRing implements IDistributionAlgorithm {
             return;
             return;
         }
         }
         if (count($this->_nodes) === 0) {
         if (count($this->_nodes) === 0) {
-            throw new \EmptyRingException('Cannot initialize empty hashring');
+            throw new EmptyRingException('Cannot initialize empty hashring');
         }
         }
 
 
         $this->_ring = array();
         $this->_ring = array();