Initial commit
This commit is contained in:
17
src/Protocol/Command/DeleteCommand.php
Normal file
17
src/Protocol/Command/DeleteCommand.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user