contraint 추가

This commit is contained in:
2018-09-02 13:46:57 +09:00
parent cf443e8531
commit e4cfebb044
6 changed files with 164 additions and 13 deletions
+37
View File
@@ -0,0 +1,37 @@
<?php
namespace sammo\Constraint;
class NoWanderingNation extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL|Constraint::REQ_CITY;
public function checkInputValues(bool $throwExeception=true){
if(!parent::checkInputValues($throwExeception) && !$throwException){
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->city['nation'] == $this->general['nation']){
return true;
}
$this->reason = "아국이 아닙니다.";
return false;
}
}