ServerVersionNext.php 583 B

1234567891011121314151617
  1. <?php
  2. namespace Predis\Profiles;
  3. class ServerVersionNext extends ServerVersion22 {
  4. public function getVersion() { return '2.4'; }
  5. public function getSupportedCommands() {
  6. return array_merge(parent::getSupportedCommands(), array(
  7. /* commands operating on lists */
  8. 'rpush' => '\Predis\Commands\ListPushTailV24x',
  9. 'lpush' => '\Predis\Commands\ListPushHeadV24x',
  10. /* remote server control commands */
  11. 'info' => '\Predis\Commands\InfoV24x',
  12. ));
  13. }
  14. }