Files
predis/lib/Predis/Commands/KeyPersist.php
T
2011-04-25 12:39:21 +02:00

14 lines
213 B
PHP

<?php
namespace Predis\Commands;
class KeyPersist extends Command {
public function getId() {
return 'PERSIST';
}
public function parseResponse($data) {
return (bool) $data;
}
}