12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Predis\Command;
- use Predis\Helpers;
- class ListPushTail extends PrefixableCommand
- {
-
- public function getId()
- {
- return 'RPUSH';
- }
-
- protected function filterArguments(Array $arguments)
- {
- return Helpers::filterVariadicValues($arguments);
- }
- }
|