mirror of
https://github.com/predis/predis.git
synced 2026-08-21 20:00:56 +00:00
13 lines
374 B
PHP
13 lines
374 B
PHP
<?php
|
|
|
|
namespace Predis\Profiles;
|
|
|
|
interface IServerProfile {
|
|
public function getVersion();
|
|
public function supportsCommand($command);
|
|
public function supportsCommands(Array $commands);
|
|
public function defineCommand($command, $aliases);
|
|
public function defineCommands(Array $commands);
|
|
public function createCommand($method, $arguments = array());
|
|
}
|