mirror of
https://github.com/predis/predis.git
synced 2026-08-21 19:41:29 +00:00
8 lines
122 B
PHP
8 lines
122 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPushTail extends Command {
|
|
public function getId() { return 'RPUSH'; }
|
|
}
|