WhichBrowser\Model\Os::getFamily PHP Method

getFamily() public method

Return the name of the operating system family
public getFamily ( ) : string
return string
    public function getFamily()
    {
        if (isset($this->family)) {
            return $this->family->getName();
        }
        return $this->getName();
    }