| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class Attr extends \PhpGedcom\Record\Indi\Even implements Sourceable, Noteable, Objectable |
||
| 25 | { |
||
| 26 | protected $type = null; |
||
| 27 | protected $_attr = null; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * |
||
| 31 | */ |
||
| 32 | protected $sour = array(); |
||
| 33 | |||
| 34 | /** |
||
| 35 | * |
||
| 36 | */ |
||
| 37 | protected $note = array(); |
||
| 38 | |||
| 39 | /** |
||
| 40 | * |
||
| 41 | */ |
||
| 42 | protected $obje = array(); |
||
| 43 | |||
| 44 | /** |
||
| 45 | * |
||
| 46 | */ |
||
| 47 | public function addSour($sour = []) |
||
| 48 | { |
||
| 49 | $this->sour[] = $sour; |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * |
||
| 54 | */ |
||
| 55 | public function addNote($note = []) |
||
| 56 | { |
||
| 57 | $this->note[] = $note; |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * |
||
| 62 | */ |
||
| 63 | public function addObje($obje = []) |
||
| 66 | } |
||
| 67 | } |
||
| 68 |