mirror of
https://github.com/predis/predis.git
synced 2026-08-23 22:39:37 +00:00
10 lines
140 B
PHP
10 lines
140 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringDecrementBy extends Command {
|
|
public function getId() {
|
|
return 'DECRBY';
|
|
}
|
|
}
|