Files
predis/lib/Predis/Commands/ServerLastSave.php
T

18 lines
298 B
PHP

<?php
namespace Predis\Commands;
class ServerLastSave extends Command {
public function getId() {
return 'LASTSAVE';
}
protected function onPrefixKeys(Array $arguments, $prefix) {
/* NOOP */
}
protected function canBeHashed() {
return false;
}
}