Преглед на файлове

Casting a instance of Predis\RedisServerProfile to string returns its associated version string.

Daniele Alessandri преди 15 години
родител
ревизия
9dae351819
променени са 1 файла, в които са добавени 4 реда и са изтрити 0 реда
  1. 4 0
      lib/Predis.php

+ 4 - 0
lib/Predis.php

@@ -807,6 +807,10 @@ abstract class RedisServerProfile {
             $this->_registeredCommands[$aliases] = $command;
         }
     }
+
+    public function __toString() {
+        return $this->getVersion();
+    }
 }
 
 class RedisServer__V1_0 extends RedisServerProfile {