mirror of
https://github.com/predis/predis.git
synced 2026-08-25 02:49:37 +00:00
12 lines
135 B
PHP
12 lines
135 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListRemove extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'LREM';
|
|
}
|
|
}
|