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