mirror of
https://github.com/predis/predis.git
synced 2026-08-22 09:51:01 +00:00
10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class KeyTimeToLive extends Command {
|
|
public function getId() {
|
|
return 'TTL';
|
|
}
|
|
}
|