mirror of
https://github.com/predis/predis.git
synced 2026-08-28 11:09:49 +00:00
8 lines
126 B
PHP
8 lines
126 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListLength extends Command {
|
|
public function getCommandId() { return 'LLEN'; }
|
|
}
|