mirror of
https://github.com/predis/predis.git
synced 2026-08-20 22:11:49 +00:00
9 lines
183 B
PHP
9 lines
183 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Expire extends Command {
|
|
public function getId() { return 'EXPIRE'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|