Total Complexity | 4 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class Refn extends \Gedcom\Record |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $refn; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $type; |
||
31 | |||
32 | /** |
||
33 | * @param string $refn |
||
34 | * |
||
35 | * @return Refn |
||
36 | */ |
||
37 | public function setRefn($refn = '') |
||
38 | { |
||
39 | $this->refn = $refn; |
||
40 | |||
41 | return $this; |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | public function getRefn() |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @param string $type |
||
54 | * |
||
55 | * @return Refn |
||
56 | */ |
||
57 | public function setType($type = '') |
||
62 | } |
||
63 | |||
64 | /** |
||
65 | * @return string |
||
66 | */ |
||
67 | public function getType() |
||
72 |