mirror of
https://github.com/predis/predis.git
synced 2026-08-22 11:01:02 +00:00
13 lines
251 B
PHP
13 lines
251 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Utils;
|
|
|
|
class Delete extends Command {
|
|
public function getId() { return 'DEL'; }
|
|
public function filterArguments(Array $arguments) {
|
|
return Utils::filterArrayArguments($arguments);
|
|
}
|
|
}
|