IServerProfile.php 266 B

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