mirror of
https://github.com/predis/predis.git
synced 2026-08-21 03:23:30 +00:00
10 lines
134 B
PHP
10 lines
134 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPushHead extends Command {
|
|
public function getId() {
|
|
return 'LPUSH';
|
|
}
|
|
}
|