1 | <?php |
||
9 | class Purchaser extends Person |
||
10 | { |
||
11 | /** |
||
12 | * Fantasy name |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | private $fantasyName; |
||
17 | |||
18 | /** |
||
19 | * Social Reason |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | private $socialReason; |
||
24 | |||
25 | /** |
||
26 | * State Registration |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | private $stateRegistration; |
||
31 | |||
32 | /** |
||
33 | * Constructor |
||
34 | * |
||
35 | * @param string $fantasyName |
||
36 | * @param string $socialReason |
||
37 | * @param string $stateRegistration |
||
38 | */ |
||
39 | 6 | public function __construct( |
|
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | 1 | public function getStateRegistration(): string |
|
56 | |||
57 | /** |
||
58 | * @param string $stateRegistration |
||
59 | */ |
||
60 | 1 | public function setStateRegistration(string $stateRegistration) |
|
64 | |||
65 | /** |
||
66 | * @return the $fantasyName |
||
67 | */ |
||
68 | 1 | public function getFantasyName(): string |
|
72 | |||
73 | /** |
||
74 | * @param mixed $fantasyName |
||
75 | */ |
||
76 | 1 | public function setFantasyName(string $fantasyName) |
|
80 | |||
81 | /** |
||
82 | * @return the $socialReason |
||
83 | */ |
||
84 | 1 | public function getSocialReason(): string |
|
88 | |||
89 | /** |
||
90 | * @param mixed $socialReason |
||
91 | */ |
||
92 | 1 | public function setSocialReason(string $socialReason) |
|
96 | } |
||
97 |