Esempio n. 1
0
 public function addChild(DivinerAtom $atom)
 {
     if ($this->childHashes) {
         throw new Exception(pht('Child hashes have already been computed!'));
     }
     $atom->setParent($this);
     $this->children[] = $atom;
     return $this;
 }