feat: 소재 도시가 공백지여야하는 조건 작성

This commit is contained in:
2023-03-15 23:19:01 +09:00
parent 3ff4d51778
commit fb5946fba5
2 changed files with 47 additions and 11 deletions
+32
View File
@@ -0,0 +1,32 @@
<?php
namespace sammo\Constraint;
class NeutralCity extends Constraint{
const REQ_VALUES = Constraint::REQ_CITY;
public function checkInputValues(bool $throwExeception=true):bool{
if(!parent::checkInputValues($throwExeception) && !$throwExeception){
return false;
}
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->city['nation'] == 0){
return true;
}
$this->reason = "공백지가 아닙니다.";
return false;
}
}