| Total Complexity | 4 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | class Even extends \PhpGedcom\Record implements Objectable, Sourceable, Noteable |
||
| 29 | { |
||
| 30 | protected $_type = null; |
||
| 31 | protected $_date = null; |
||
| 32 | protected $_plac = null; |
||
| 33 | protected $_caus = null; |
||
| 34 | protected $_age = null; |
||
| 35 | |||
| 36 | protected $_addr = null; |
||
| 37 | |||
| 38 | protected $_phon = []; |
||
| 39 | |||
| 40 | protected $_agnc = null; |
||
| 41 | |||
| 42 | protected $_husb = null; |
||
| 43 | protected $_wife = null; |
||
| 44 | |||
| 45 | protected $_obje = []; |
||
| 46 | |||
| 47 | protected $_sour = []; |
||
| 48 | |||
| 49 | protected $_note = []; |
||
| 50 | |||
| 51 | public function addPhon($phon = []) |
||
| 52 | { |
||
| 53 | $this->_phon[] = $phon; |
||
| 54 | } |
||
| 55 | |||
| 56 | public function addObje($obje = []) |
||
| 59 | } |
||
| 60 | |||
| 61 | public function addSour($sour = []) |
||
| 62 | { |
||
| 63 | $this->_sour[] = $sour; |
||
| 64 | } |
||
| 65 | |||
| 66 | public function addNote($note = []) |
||
| 69 | } |
||
| 70 | } |
||
| 71 |