mirror of
https://github.com/predis/predis.git
synced 2026-08-24 15:59:32 +00:00
10 lines
147 B
PHP
10 lines
147 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPushHeadV24x extends ListPushTailV24x {
|
|
public function getId() {
|
|
return 'LPUSH';
|
|
}
|
|
}
|