Cockpit\Helper\Versions::get PHP Method

get() public method

public get ( $path, $uid = null )
    public function get($path, $uid = null)
    {
        if ($uid) {
            return $this->storage->hget($path, $uid);
        } else {
            return $this->storage->hgetall($path);
        }
    }