generalSource 폐기

This commit is contained in:
2018-10-17 16:01:38 +09:00
parent dde5bcbfe1
commit 0816d14264
14 changed files with 67 additions and 91 deletions
-13
View File
@@ -36,8 +36,6 @@ abstract class BaseCommand{
protected $runnableConstraints = null;
protected $reservableConstraints = null;
protected $generalSource = null;
protected $logger;
@@ -54,17 +52,6 @@ abstract class BaseCommand{
}
public function setGeneralSource(?array $generalSource){
$this->generalSource = $generalSource;
}
protected function getGeneralObjFromGeneralSource(int $generalNo):?General{
if($this->generalSource === null){
return null;
}
return $this->generalSource[$generalNo]??null;
}
protected function resetTestCache():void{
$this->runnable = null;
$this->reservable = null;