Files
core/hwe/sammo/Constraint/BeChief.php
T

32 lines
801 B
PHP

<?php
namespace sammo\Constraint;
class BeChief extends Constraint{
const REQ_VALUES = Constraint::REQ_GENERAL;
public function checkInputValues(bool $throwExeception=true):bool{
if(!parent::checkInputValues($throwExeception) && !$throwExeception){
return false;
}
if(!key_exists('officer_level', $this->general)){
if(!$throwExeception){return false; }
throw new \InvalidArgumentException("require officer_level in general");
}
return true;
}
public function test():bool{
$this->checkInputValues();
$this->tested = true;
if($this->general['officer_level'] > 4){
return true;
}
$this->reason = "수뇌가 아닙니다.";
return false;
}
}