toalett-redis-timeseries/src/Protocol/Command/DeleteCommand.php
2020-12-28 23:32:37 +01:00

18 lines
391 B
PHP

<?php
namespace Toalett\Redis\Timeseries\Protocol\Command;
use Toalett\Redis\Timeseries\Protocol\Command\Components\CommandAssembler;
use Toalett\Redis\Timeseries\Protocol\Command\Components\ContainsKey;
class DeleteCommand implements Command
{
use ContainsKey;
use CommandAssembler;
public function toRawCommand(): array
{
return $this->assemble('DEL');
}
}