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

14 lines
208 B
PHP

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