mirror of
https://github.com/predis/predis.git
synced 2026-08-24 14:59:31 +00:00
10 lines
130 B
PHP
10 lines
130 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class TimeToLive extends Command {
|
|
public function getId() {
|
|
return 'TTL';
|
|
}
|
|
}
|