Files
predis/lib/Predis/Commands/ServerFlushDatabase.php
T
2011-10-18 15:51:55 +02:00

22 lines
314 B
PHP

<?php
namespace Predis\Commands;
class ServerFlushDatabase extends Command
{
public function getId()
{
return 'FLUSHDB';
}
protected function onPrefixKeys(Array $arguments, $prefix)
{
/* NOOP */
}
protected function canBeHashed()
{
return false;
}
}