버그 수정

This commit is contained in:
2020-04-22 03:05:05 +09:00
parent 6d6326e415
commit c4fe77a5ba
4 changed files with 39 additions and 21 deletions
+2 -5
View File
@@ -258,11 +258,6 @@ abstract class BaseCommand{
}
public function testReservable():?string{
if(!$this->isArgValid()){
$this->reasonNotReservable = '인자가 올바르지 않습니다.';
$this->reservable = false;
return $this->reasonNotReservable;
}
if($this->reservableConstraints === null){
return null;
}
@@ -271,6 +266,7 @@ abstract class BaseCommand{
return $this->reasonNotReservable;
}
$this->generalObj->unpackAux();
$constraintInput = [
'general'=>$this->generalObj->getRaw(),
'city'=>$this->city,
@@ -305,6 +301,7 @@ abstract class BaseCommand{
return $this->reasonNotRunnable;
}
$this->generalObj->unpackAux();
$constraintInput = [
'general'=>$this->generalObj->getRaw(),
'city'=>$this->city,