| Total Complexity | 4 |
| Total Lines | 57 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | class Even extends \PhpGedcom\Record implements Objectable, Sourceable, Noteable { |
||
| 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 = array(); |
||
| 39 | |||
| 40 | protected $_agnc = null; |
||
| 41 | |||
| 42 | protected $_husb = null; |
||
| 43 | protected $_wife = null; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * |
||
| 47 | */ |
||
| 48 | protected $_obje = array(); |
||
| 49 | |||
| 50 | /** |
||
| 51 | * |
||
| 52 | */ |
||
| 53 | protected $_sour = array(); |
||
| 54 | |||
| 55 | /** |
||
| 56 | * |
||
| 57 | */ |
||
| 58 | protected $_note = array(); |
||
| 59 | |||
| 60 | /** |
||
| 61 | * |
||
| 62 | */ |
||
| 63 | public function addPhon($phon = []) { |
||
| 64 | $this->_phon[] = $phon; |
||
| 65 | } |
||
| 66 | |||
| 67 | /** |
||
| 68 | * |
||
| 69 | */ |
||
| 70 | public function addObje($obje = []) { |
||
| 72 | } |
||
| 73 | |||
| 74 | /** |
||
| 75 | * |
||
| 76 | */ |
||
| 77 | public function addSour($sour = []) { |
||
| 78 | $this->_sour[] = $sour; |
||
| 79 | } |
||
| 80 | |||
| 81 | /** |
||
| 82 | * |
||
| 83 | */ |
||
| 84 | public function addNote($note = []) { |
||
| 86 | } |
||
| 87 | } |
||
| 88 |