IServerProfile.php 266 B

12345678910
  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 createCommand($method, $arguments = array());
  8. }