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

14 lines
278 B
PHP

<?php
namespace Predis\Commands;
use Predis\Utils;
use Predis\Command;
class Delete extends Command {
public function getCommandId() { return 'DEL'; }
public function filterArguments(Array $arguments) {
return Utils::filterArrayArguments($arguments);
}
}