Files
predis/lib/Predis/Profiles/ServerVersionNext.php
T
2011-04-06 12:49:54 +02:00

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',
));
}
}