Files
predis/lib/Predis/Commands/FlushAll.php
T

11 lines
202 B
PHP

<?php
namespace Predis\Commands;
use Predis\Command;
class FlushAll extends Command {
public function canBeHashed() { return false; }
public function getCommandId() { return 'FLUSHALL'; }
}