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