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

14 lines
201 B
PHP

<?php
namespace Predis\Commands;
class LastSave extends Command {
public function getId() {
return 'LASTSAVE';
}
protected function canBeHashed() {
return false;
}
}