From 094a5bcc901166ff8ca446a2ce1ae4e2fae94221 Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Tue, 29 Mar 2011 00:14:54 +0200 Subject: [PATCH] Fix wrong command class for KEYS in the v2.2 server profile. --- lib/Predis/Profiles/ServerVersion22.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Predis/Profiles/ServerVersion22.php b/lib/Predis/Profiles/ServerVersion22.php index e3a3e77d..ba8c16b2 100644 --- a/lib/Predis/Profiles/ServerVersion22.php +++ b/lib/Predis/Profiles/ServerVersion22.php @@ -33,7 +33,7 @@ class ServerVersion22 extends ServerProfile { 'type' => '\Predis\Commands\Type', /* commands operating on the key space */ - 'keys' => '\Predis\Commands\KeysV12x', + 'keys' => '\Predis\Commands\Keys', 'randomkey' => '\Predis\Commands\RandomKey', 'rename' => '\Predis\Commands\Rename', 'renamenx' => '\Predis\Commands\RenamePreserve',