DebugObject.php 223 B

123456789101112131415
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Helpers;
  4. class DebugObject extends Command {
  5. public function getId() {
  6. return 'OBJECT';
  7. }
  8. protected function canBeHashed() {
  9. return false;
  10. }
  11. }