general)){ if(!$throwExeception){return false; } throw new \InvalidArgumentException("require nation in general"); } if(!key_exists('nation', $this->city)){ if(!$throwExeception){return false; } throw new \InvalidArgumentException("require nation in city"); } return true; } public function test():bool{ $this->checkInputValues(); $this->tested = true; //재야여도 허용하는 경우 if($this->arg && $this->general['nation'] == 0){ return true; } if($this->city['nation'] == $this->general['nation']){ return true; } $this->reason = "아국이 아닙니다."; return false; } }