ListPushTail.php 134 B

123456789
  1. <?php
  2. namespace Predis\Commands;
  3. class ListPushTail extends Command {
  4. public function getId() {
  5. return 'RPUSH';
  6. }
  7. }