Add the OBJECT command to the dev server profile.

This commit is contained in:
Daniele Alessandri
2011-04-06 12:49:54 +02:00
parent 86df741937
commit 80f1cedf79
3 changed files with 17 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace Predis\Commands;
use Predis\Helpers;
class DebugObject extends Command {
public function getId() {
return 'OBJECT';
}
protected function canBeHashed() {
return false;
}
}