mirror of
https://github.com/predis/predis.git
synced 2026-08-25 13:09:35 +00:00
17 lines
223 B
PHP
17 lines
223 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class KeyExpireAt extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'EXPIREAT';
|
|
}
|
|
|
|
public function parseResponse($data)
|
|
{
|
|
return (bool) $data;
|
|
}
|
|
}
|