Disorder::getSystemic PHP Метод

getSystemic() публичный Метод

returns boolean to indicate if the disorder is systemic (true).
public getSystemic ( ) : boolean
Результат boolean
    public function getSystemic()
    {
        if ($this->specialty_id) {
            return false;
        }
        return true;
    }