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