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

11 lines
211 B
PHP

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