mirror of
https://github.com/predis/predis.git
synced 2026-08-25 07:39:36 +00:00
10 lines
147 B
PHP
10 lines
147 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetExpire extends Command {
|
|
public function getCommandId() { return 'SETEX'; }
|
|
}
|