| Total Complexity | 2 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class Fone extends Record |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string phonetic_variation |
||
| 26 | */ |
||
| 27 | protected $fone; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string phonetic_type |
||
| 31 | */ |
||
| 32 | protected $type; |
||
| 33 | /** |
||
| 34 | * string name_piece_prefix. |
||
| 35 | */ |
||
| 36 | protected $_npfx = null; |
||
| 37 | /** |
||
| 38 | * string name_piece_given. |
||
| 39 | */ |
||
| 40 | protected $_givn = null; |
||
| 41 | /** |
||
| 42 | * string name_piece_nickname. |
||
| 43 | */ |
||
| 44 | protected $_nick = null; |
||
| 45 | /** |
||
| 46 | * strign name_piece_surname_prefix. |
||
| 47 | */ |
||
| 48 | protected $_spfx = null; |
||
| 49 | /** |
||
| 50 | * string name_piece_surname. |
||
| 51 | */ |
||
| 52 | protected $_surn = null; |
||
| 53 | /** |
||
| 54 | * string name_piece_suffix. |
||
| 55 | */ |
||
| 56 | protected $_nsfx = null; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * PhpGedcom\Record\NoteRef. |
||
| 60 | */ |
||
| 61 | protected $_note = []; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * PhpGedcom\Record\SourRef. |
||
| 65 | */ |
||
| 66 | protected $_sour = []; |
||
| 67 | |||
| 68 | public function addSour($sour = []) |
||
| 69 | { |
||
| 70 | $this->_sour[] = $sour; |
||
| 71 | } |
||
| 72 | |||
| 73 | public function addNote($note = []) |
||
| 76 | } |
||
| 77 | } |
||
| 78 |