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