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