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