コード例 #1
0
ファイル: Person.php プロジェクト: ophelielv/family-tree
 public function addChildOfFather(Person $child)
 {
     $this->childrenOfFather[] = $child;
     $child->setFather($this);
     return $this;
 }