예제 #1
0
파일: Job.php 프로젝트: rezzza/jobflow
 /**
  * @param JobInterface $child
  */
 public function add(JobInterface $child)
 {
     $child->setParent($this);
     $this->children[$child->getName()] = $child;
 }