Переглянути джерело

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 {