mirror of
https://github.com/predis/predis.git
synced 2026-08-24 17:29:35 +00:00
13 lines
378 B
PHP
13 lines
378 B
PHP
<?php
|
|
|
|
namespace Predis\Profiles;
|
|
|
|
interface IServerProfile {
|
|
public function getVersion();
|
|
public function supportsCommand($command);
|
|
public function supportsCommands(Array $commands);
|
|
public function registerCommand($command, $aliases);
|
|
public function registerCommands(Array $commands);
|
|
public function createCommand($method, $arguments = array());
|
|
}
|