mirror of
https://github.com/predis/predis.git
synced 2026-08-22 13:32:20 +00:00
17 lines
621 B
PHP
17 lines
621 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(
|
|
/* remote server control commands */
|
|
'info' => '\Predis\Commands\ServerInfoV24x',
|
|
'client' => '\Predis\Commands\ServerClient',
|
|
'eval' => '\Predis\Commands\ServerEval',
|
|
'evalsha' => '\Predis\Commands\ServerEvalSHA',
|
|
));
|
|
}
|
|
}
|