mirror of
https://github.com/predis/predis.git
synced 2026-08-21 23:21:01 +00:00
9 lines
187 B
PHP
9 lines
187 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ExpireAt extends Command {
|
|
public function getId() { return 'EXPIREAT'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|