12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Predis\Commands;
- class ServerDatabaseSize extends Command
- {
-
- public function getId()
- {
- return 'DBSIZE';
- }
-
- protected function onPrefixKeys(Array $arguments, $prefix)
- {
-
- }
-
- protected function canBeHashed()
- {
- return false;
- }
- }
|