This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | namespace Gueststream\PMS\IQWare\API; |
||
4 | |||
5 | class WSCRSHo_ClubMemberSearch |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $GUID |
||
10 | */ |
||
11 | protected $GUID = null; |
||
12 | |||
13 | /** |
||
14 | * @var string $MemberNo |
||
15 | */ |
||
16 | protected $MemberNo = null; |
||
17 | |||
18 | /** |
||
19 | * @var string $ClubNo |
||
20 | */ |
||
21 | protected $ClubNo = null; |
||
22 | |||
23 | /** |
||
24 | * @var string $ClubName |
||
25 | */ |
||
26 | protected $ClubName = null; |
||
27 | |||
28 | /** |
||
29 | * @var string $MemberLastName |
||
30 | */ |
||
31 | protected $MemberLastName = null; |
||
32 | |||
33 | /** |
||
34 | * @var string $MemberFirstName |
||
35 | */ |
||
36 | protected $MemberFirstName = null; |
||
37 | |||
38 | /** |
||
39 | * @var boolean $IsActive |
||
40 | */ |
||
41 | protected $IsActive = null; |
||
42 | |||
43 | /** |
||
44 | * @var TSearchRigidity $Rigidity |
||
45 | */ |
||
46 | protected $Rigidity = null; |
||
47 | |||
48 | /** |
||
49 | * @param int $GUID |
||
50 | * @param string $MemberNo |
||
51 | * @param string $ClubNo |
||
52 | * @param string $ClubName |
||
53 | * @param string $MemberLastName |
||
54 | * @param string $MemberFirstName |
||
55 | * @param boolean $IsActive |
||
56 | * @param TSearchRigidity $Rigidity |
||
57 | */ |
||
58 | View Code Duplication | public function __construct($GUID, $MemberNo, $ClubNo, $ClubName, $MemberLastName, $MemberFirstName, $IsActive, $Rigidity) |
|
0 ignored issues
–
show
|
|||
59 | { |
||
60 | $this->GUID = $GUID; |
||
61 | $this->MemberNo = $MemberNo; |
||
62 | $this->ClubNo = $ClubNo; |
||
63 | $this->ClubName = $ClubName; |
||
64 | $this->MemberLastName = $MemberLastName; |
||
65 | $this->MemberFirstName = $MemberFirstName; |
||
66 | $this->IsActive = $IsActive; |
||
67 | $this->Rigidity = $Rigidity; |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * @return int |
||
72 | */ |
||
73 | public function getGUID() |
||
74 | { |
||
75 | return $this->GUID; |
||
76 | } |
||
77 | |||
78 | /** |
||
79 | * @param int $GUID |
||
80 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
81 | */ |
||
82 | public function setGUID($GUID) |
||
83 | { |
||
84 | $this->GUID = $GUID; |
||
85 | return $this; |
||
86 | } |
||
87 | |||
88 | /** |
||
89 | * @return string |
||
90 | */ |
||
91 | public function getMemberNo() |
||
92 | { |
||
93 | return $this->MemberNo; |
||
94 | } |
||
95 | |||
96 | /** |
||
97 | * @param string $MemberNo |
||
98 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
99 | */ |
||
100 | public function setMemberNo($MemberNo) |
||
101 | { |
||
102 | $this->MemberNo = $MemberNo; |
||
103 | return $this; |
||
104 | } |
||
105 | |||
106 | /** |
||
107 | * @return string |
||
108 | */ |
||
109 | public function getClubNo() |
||
110 | { |
||
111 | return $this->ClubNo; |
||
112 | } |
||
113 | |||
114 | /** |
||
115 | * @param string $ClubNo |
||
116 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
117 | */ |
||
118 | public function setClubNo($ClubNo) |
||
119 | { |
||
120 | $this->ClubNo = $ClubNo; |
||
121 | return $this; |
||
122 | } |
||
123 | |||
124 | /** |
||
125 | * @return string |
||
126 | */ |
||
127 | public function getClubName() |
||
128 | { |
||
129 | return $this->ClubName; |
||
130 | } |
||
131 | |||
132 | /** |
||
133 | * @param string $ClubName |
||
134 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
135 | */ |
||
136 | public function setClubName($ClubName) |
||
137 | { |
||
138 | $this->ClubName = $ClubName; |
||
139 | return $this; |
||
140 | } |
||
141 | |||
142 | /** |
||
143 | * @return string |
||
144 | */ |
||
145 | public function getMemberLastName() |
||
146 | { |
||
147 | return $this->MemberLastName; |
||
148 | } |
||
149 | |||
150 | /** |
||
151 | * @param string $MemberLastName |
||
152 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
153 | */ |
||
154 | public function setMemberLastName($MemberLastName) |
||
155 | { |
||
156 | $this->MemberLastName = $MemberLastName; |
||
157 | return $this; |
||
158 | } |
||
159 | |||
160 | /** |
||
161 | * @return string |
||
162 | */ |
||
163 | public function getMemberFirstName() |
||
164 | { |
||
165 | return $this->MemberFirstName; |
||
166 | } |
||
167 | |||
168 | /** |
||
169 | * @param string $MemberFirstName |
||
170 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
171 | */ |
||
172 | public function setMemberFirstName($MemberFirstName) |
||
173 | { |
||
174 | $this->MemberFirstName = $MemberFirstName; |
||
175 | return $this; |
||
176 | } |
||
177 | |||
178 | /** |
||
179 | * @return boolean |
||
180 | */ |
||
181 | public function getIsActive() |
||
182 | { |
||
183 | return $this->IsActive; |
||
184 | } |
||
185 | |||
186 | /** |
||
187 | * @param boolean $IsActive |
||
188 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
189 | */ |
||
190 | public function setIsActive($IsActive) |
||
191 | { |
||
192 | $this->IsActive = $IsActive; |
||
193 | return $this; |
||
194 | } |
||
195 | |||
196 | /** |
||
197 | * @return TSearchRigidity |
||
198 | */ |
||
199 | public function getRigidity() |
||
200 | { |
||
201 | return $this->Rigidity; |
||
202 | } |
||
203 | |||
204 | /** |
||
205 | * @param TSearchRigidity $Rigidity |
||
206 | * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch |
||
207 | */ |
||
208 | public function setRigidity($Rigidity) |
||
209 | { |
||
210 | $this->Rigidity = $Rigidity; |
||
211 | return $this; |
||
212 | } |
||
213 | } |
||
214 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.