public function setMother(PersonaInterface $mother = null)
    {
        if ($mother instanceof PersonaInterface) {
            if ($this->parentsValidator->isValidMother($this, $mother)) {
                $this->mother = $mother;