ManaPHP\Counter\Adapter\Redis::get PHP Méthode

get() public méthode

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