Disorder::getSystemic PHP Method

getSystemic() public method

returns boolean to indicate if the disorder is systemic (true).
public getSystemic ( ) : boolean
return boolean
    public function getSystemic()
    {
        if ($this->specialty_id) {
            return false;
        }
        return true;
    }