mirror of
https://github.com/predis/predis.git
synced 2026-08-26 10:29:52 +00:00
17 lines
219 B
PHP
17 lines
219 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class KeyExpire extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'EXPIRE';
|
|
}
|
|
|
|
public function parseResponse($data)
|
|
{
|
|
return (bool) $data;
|
|
}
|
|
}
|