버그 수정

This commit is contained in:
2019-04-21 11:43:23 +09:00
parent 03510ee1e7
commit 1a0e84e6d7
56 changed files with 77 additions and 73 deletions
+3 -3
View File
@@ -18,7 +18,7 @@ class ReqEnvValue extends Constraint{
protected $msg;
public function checkInputValues(bool $throwExeception=true){
if(!parent::checkInputValues($throwExeception) && !$throwException){
if(!parent::checkInputValues($throwExeception) && !$throwExeception){
return false;
}
@@ -62,13 +62,13 @@ class ReqEnvValue extends Constraint{
'=='=>function($target, $src){
return ($target == $src);
},
'!='=>function($targeta, $src){
'!='=>function($target, $src){
return ($target != $src);
},
'==='=>function($target, $src){
return ($target === $src);
},
'!=='=>function($targeta, $src){
'!=='=>function($target, $src){
return ($target !== $src);
},
'>='=>function($target, $src){