mirror of
https://github.com/predis/predis.git
synced 2026-08-20 14:52:05 +00:00
14 lines
203 B
PHP
14 lines
203 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class DatabaseSize extends Command {
|
|
public function getId() {
|
|
return 'DBSIZE';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|