mirror of
https://github.com/predis/predis.git
synced 2026-08-24 18:59:36 +00:00
12 lines
140 B
PHP
12 lines
140 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringDecrement extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'DECR';
|
|
}
|
|
}
|