Files
core/hwe/sammo/Constraint/OccupiedCity.php
2020-05-31 17:21:51 +09:00

42 lines
1.1 KiB
PHP

<?php
namespace sammo\Constraint;
class OccupiedCity extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL|Constraint::REQ_CITY|Constraint::REQ_BOOLEAN_ARG;
public function checkInputValues(bool $throwExeception=true):bool{
if(!parent::checkInputValues($throwExeception) && !$throwExeception){
return false;
}
if(!key_exists('nation', $this->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;
}
}