mirror of
https://github.com/predis/predis.git
synced 2026-08-22 11:01:02 +00:00
10 lines
130 B
PHP
10 lines
130 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListTrim extends Command {
|
|
public function getId() {
|
|
return 'LTRIM';
|
|
}
|
|
}
|