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

get() public method

public get ( string $type, string $id ) : integer
$type string
$id string
return integer
    public function get($type, $id)
    {
        return (int) $this->redis->hGet($this->_prefix . $type, $id);
    }