ManaPHP\Counter\Adapter\Redis::increment PHP Method

increment() public method

public increment ( string $type, string $id, integer $step = 1 ) : integer
$type string
$id string
$step integer
return integer
    public function increment($type, $id, $step = 1)
    {
        return $this->redis->hIncrBy($this->_prefix . $type, $id, $step);
    }