mirror of
https://github.com/predis/predis.git
synced 2026-08-20 03:11:48 +00:00
9 lines
178 B
PHP
9 lines
178 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class FlushDatabase extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'FLUSHDB'; }
|
|
}
|