mirror of
https://github.com/predis/predis.git
synced 2026-08-22 07:50:56 +00:00
16 lines
223 B
PHP
16 lines
223 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Helpers;
|
|
|
|
class DebugObject extends Command {
|
|
public function getId() {
|
|
return 'OBJECT';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|