123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Predis\Profile;
- class ServerVersionNext extends ServerVersion26
- {
-
- public function getVersion()
- {
- return '2.8';
- }
-
- public function getSupportedCommands()
- {
- return array_merge(parent::getSupportedCommands(), array());
- }
- }
|