mirror of
https://github.com/predis/predis.git
synced 2026-08-23 13:43:42 +00:00
14 lines
199 B
PHP
14 lines
199 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Discard extends Command {
|
|
public function getId() {
|
|
return 'DISCARD';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|