mirror of
https://github.com/predis/predis.git
synced 2026-08-24 15:39:28 +00:00
12 lines
135 B
PHP
12 lines
135 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class HashLength extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'HLEN';
|
|
}
|
|
}
|