The property fatherId does not exist on kalanis\kw_pedigree\Storage\APedigreeRecord. Since you implemented __get, consider adding a @property annotation.
The property fatherId does not exist on kalanis\kw_pedigree\Storage\APedigreeRecord. Since you implemented __set, consider adding a @property annotation.
The property fatherId does not exist on kalanis\kw_pedigree\Storage\APedigreeRecord. Since you implemented __get, consider adding a @property annotation.
Loading history...
29
1
return !is_null($data) ? intval($data) : null;
30
}
31
32
1
public function setMotherId(?int $motherId): ?bool
33
{
34
1
if ($this->getLoadedRecord()->motherId != $motherId) {
The property motherId does not exist on kalanis\kw_pedigree\Storage\APedigreeRecord. Since you implemented __get, consider adding a @property annotation.
The property motherId does not exist on kalanis\kw_pedigree\Storage\APedigreeRecord. Since you implemented __set, consider adding a @property annotation.
The property motherId does not exist on kalanis\kw_pedigree\Storage\APedigreeRecord. Since you implemented __get, consider adding a @property annotation.
Loading history...
44
1
return !is_null($data) ? intval($data) : null;
45
}
46
47
/**
48
* @throws PedigreeException
49
* @return PedigreeRecord
50
*/
51
5
public function getLoadedRecord(): APedigreeRecord