mirror of
https://github.com/predis/predis.git
synced 2026-08-22 00:30:57 +00:00
10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListRange extends Command {
|
|
public function getId() {
|
|
return 'LRANGE';
|
|
}
|
|
}
|