mirror of
https://github.com/predis/predis.git
synced 2026-08-22 14:31:12 +00:00
18 lines
583 B
PHP
18 lines
583 B
PHP
<?php
|
|
|
|
namespace Predis\Profiles;
|
|
|
|
class ServerVersionNext extends ServerVersion22 {
|
|
public function getVersion() { return '2.4'; }
|
|
public function getSupportedCommands() {
|
|
return array_merge(parent::getSupportedCommands(), array(
|
|
/* commands operating on lists */
|
|
'rpush' => '\Predis\Commands\ListPushTailV24x',
|
|
'lpush' => '\Predis\Commands\ListPushHeadV24x',
|
|
|
|
/* remote server control commands */
|
|
'info' => '\Predis\Commands\InfoV24x',
|
|
));
|
|
}
|
|
}
|