mirror of
https://github.com/predis/predis.git
synced 2026-08-22 02:50:59 +00:00
11 lines
266 B
PHP
11 lines
266 B
PHP
<?php
|
|
|
|
namespace Predis\Profiles;
|
|
|
|
interface IServerProfile {
|
|
public function getVersion();
|
|
public function supportsCommand($command);
|
|
public function supportsCommands(Array $commands);
|
|
public function createCommand($method, $arguments = array());
|
|
}
|