mirror of
https://github.com/predis/predis.git
synced 2026-08-19 12:21:50 +00:00
15 lines
455 B
PHP
15 lines
455 B
PHP
<?php
|
|
|
|
namespace Predis\Profiles;
|
|
|
|
class ServerVersionNext extends ServerVersion22 {
|
|
public function getVersion() { return 'DEV'; }
|
|
public function getSupportedCommands() {
|
|
return array_merge(parent::getSupportedCommands(), array(
|
|
/* remote server control commands */
|
|
'info' => '\Predis\Commands\InfoV24x',
|
|
'object' => '\Predis\Commands\DebugObject',
|
|
));
|
|
}
|
|
}
|