IServerProfile.php 378 B

123456789101112
  1. <?php
  2. namespace Predis\Profiles;
  3. interface IServerProfile {
  4. public function getVersion();
  5. public function supportsCommand($command);
  6. public function supportsCommands(Array $commands);
  7. public function registerCommand($command, $aliases);
  8. public function registerCommands(Array $commands);
  9. public function createCommand($method, $arguments = array());
  10. }