mirror of
https://github.com/predis/predis.git
synced 2026-08-26 19:49:53 +00:00
10 lines
136 B
PHP
10 lines
136 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPushHeadX extends Command {
|
|
public function getId() {
|
|
return 'LPUSHX';
|
|
}
|
|
}
|