WhichBrowser\Model\Browser::isUsing PHP Method

isUsing() public method

Is the browser using the specified webview
public isUsing ( string $name ) : boolean
$name string The name of the webview
return boolean
    public function isUsing($name)
    {
        if (isset($this->using)) {
            if ($this->using->getName() == $name) {
                return true;
            }
        }
        return false;
    }