mirror of
https://github.com/predis/predis.git
synced 2026-08-25 17:29:40 +00:00
10 lines
139 B
PHP
10 lines
139 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPushHead extends ListPushTail {
|
|
public function getId() {
|
|
return 'LPUSH';
|
|
}
|
|
}
|