| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class Obje extends \Gedcom\Record implements Noteable |
||
| 18 | { |
||
| 19 | protected $_id; |
||
| 20 | |||
| 21 | protected $_file = []; |
||
| 22 | protected $_rin; |
||
| 23 | protected $_chan; |
||
| 24 | |||
| 25 | protected $_refn = []; |
||
| 26 | |||
| 27 | protected $_note = []; |
||
| 28 | |||
| 29 | protected $_sour = []; |
||
| 30 | |||
| 31 | public function addRefn($refn = []) |
||
| 32 | { |
||
| 33 | $this->_refn[] = $refn; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function addNote($note = []) |
||
| 37 | { |
||
| 38 | $this->_note[] = $note; |
||
| 39 | } |
||
| 40 | |||
| 41 | public function addFile($file) |
||
| 44 | } |
||
| 45 | |||
| 46 | public function addSour($sour) |
||
| 49 | } |
||
| 50 | } |
||
| 51 |