mirror of
https://github.com/predis/predis.git
synced 2026-08-27 00:39:38 +00:00
10 lines
150 B
PHP
10 lines
150 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class DecrementBy extends Command {
|
|
public function getCommandId() { return 'DECRBY'; }
|
|
}
|