mirror of
https://github.com/predis/predis.git
synced 2026-08-22 08:50:57 +00:00
14 lines
203 B
PHP
14 lines
203 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ConnectionEcho extends Command {
|
|
public function getId() {
|
|
return 'ECHO';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|