mirror of
https://github.com/predis/predis.git
synced 2026-08-24 19:09:39 +00:00
9 lines
185 B
PHP
9 lines
185 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class FlushDatabase extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getCommandId() { return 'FLUSHDB'; }
|
|
}
|