Beispiel #1
0
 public function addChildOfMother(Person $child)
 {
     $this->childrenOfMother[] = $child;
     $child->setMother($this);
     return $this;
 }