@@ -18,7 +18,7 @@ public function __construct(array $parameters = [])
18
18
}
19
19
20
20
/**
21
- * Get Card Title.
21
+ * Get Customer Title.
22
22
*
23
23
* @return string
24
24
*/
@@ -28,7 +28,7 @@ public function getTitle()
28
28
}
29
29
30
30
/**
31
- * Set Card Title.
31
+ * Set Customer Title.
32
32
*
33
33
* @param string $value Parameter value
34
34
* @return CreditCard provides a fluent interface.
@@ -41,7 +41,7 @@ public function setTitle($value)
41
41
}
42
42
43
43
/**
44
- * Get Card First Name.
44
+ * Get Customer First Name.
45
45
*
46
46
* @return string
47
47
*/
@@ -51,10 +51,10 @@ public function getFirstName()
51
51
}
52
52
53
53
/**
54
- * Set Card First Name (Billing and Shipping).
54
+ * Set Customer First Name (Billing and Shipping).
55
55
*
56
56
* @param string $value Parameter value
57
- * @return CreditCard provides a fluent interface.
57
+ * @return $this provides a fluent interface.
58
58
*/
59
59
public function setFirstName ($ value )
60
60
{
@@ -64,7 +64,7 @@ public function setFirstName($value)
64
64
}
65
65
66
66
/**
67
- * Get Card Last Name.
67
+ * Get Customer Last Name.
68
68
*
69
69
* @return string
70
70
*/
@@ -74,10 +74,10 @@ public function getLastName()
74
74
}
75
75
76
76
/**
77
- * Set Card Last Name (Billing and Shipping).
77
+ * Set Customer Last Name (Billing and Shipping).
78
78
*
79
79
* @param string $value Parameter value
80
- * @return CreditCard provides a fluent interface.
80
+ * @return $this provides a fluent interface.
81
81
*/
82
82
public function setLastName ($ value )
83
83
{
@@ -87,7 +87,7 @@ public function setLastName($value)
87
87
}
88
88
89
89
/**
90
- * Get Card Name.
90
+ * Get Customer Name.
91
91
*
92
92
* @return string
93
93
*/
@@ -97,10 +97,10 @@ public function getName()
97
97
}
98
98
99
99
/**
100
- * Set Card Name (Billing and Shipping).
100
+ * Set Customer Name (Billing and Shipping).
101
101
*
102
102
* @param string $value Parameter value
103
- * @return CreditCard provides a fluent interface.
103
+ * @return $this provides a fluent interface.
104
104
*/
105
105
public function setName ($ value )
106
106
{
@@ -125,7 +125,7 @@ public function getAddress1()
125
125
* Sets the address, line 1.
126
126
*
127
127
* @param string $value
128
- * @return CreditCard provides a fluent interface.
128
+ * @return $this provides a fluent interface.
129
129
*/
130
130
public function setAddress1 ($ value )
131
131
{
@@ -135,7 +135,7 @@ public function setAddress1($value)
135
135
}
136
136
137
137
/**
138
- * Get the address, line 2.
138
+ * Get the address, line 2.
139
139
*
140
140
* @return string
141
141
*/
@@ -148,7 +148,7 @@ public function getAddress2()
148
148
* Sets the address, line 2.
149
149
*
150
150
* @param string $value
151
- * @return CreditCard provides a fluent interface.
151
+ * @return $this provides a fluent interface.
152
152
*/
153
153
public function setAddress2 ($ value )
154
154
{
@@ -158,7 +158,7 @@ public function setAddress2($value)
158
158
}
159
159
160
160
/**
161
- * Get the city.
161
+ * Get the city.
162
162
*
163
163
* @return string
164
164
*/
@@ -171,7 +171,7 @@ public function getCity()
171
171
* Sets the city.
172
172
*
173
173
* @param string $value
174
- * @return CreditCard provides a fluent interface.
174
+ * @return $this provides a fluent interface.
175
175
*/
176
176
public function setCity ($ value )
177
177
{
@@ -181,7 +181,7 @@ public function setCity($value)
181
181
}
182
182
183
183
/**
184
- * Get the postcode.
184
+ * Get the postcode.
185
185
*
186
186
* @return string
187
187
*/
@@ -194,7 +194,7 @@ public function getPostcode()
194
194
* Sets the postcode.
195
195
*
196
196
* @param string $value
197
- * @return CreditCard provides a fluent interface.
197
+ * @return $this provides a fluent interface.
198
198
*/
199
199
public function setPostcode ($ value )
200
200
{
@@ -204,7 +204,7 @@ public function setPostcode($value)
204
204
}
205
205
206
206
/**
207
- * Get the state.
207
+ * Get the state.
208
208
*
209
209
* @return string
210
210
*/
@@ -217,7 +217,7 @@ public function getState()
217
217
* Sets the state.
218
218
*
219
219
* @param string $value
220
- * @return CreditCard provides a fluent interface.
220
+ * @return $this provides a fluent interface.
221
221
*/
222
222
public function setState ($ value )
223
223
{
@@ -227,7 +227,7 @@ public function setState($value)
227
227
}
228
228
229
229
/**
230
- * Get the country.
230
+ * Get the country.
231
231
*
232
232
* @return string
233
233
*/
@@ -240,7 +240,7 @@ public function getCountry()
240
240
* Sets the country.
241
241
*
242
242
* @param string $value
243
- * @return CreditCard provides a fluent interface.
243
+ * @return $this provides a fluent interface.
244
244
*/
245
245
public function setCountry ($ value )
246
246
{
@@ -250,7 +250,7 @@ public function setCountry($value)
250
250
}
251
251
252
252
/**
253
- * Get the phone number.
253
+ * Get the phone number.
254
254
*
255
255
* @return string
256
256
*/
@@ -263,7 +263,7 @@ public function getPhone()
263
263
* Sets the phone number.
264
264
*
265
265
* @param string $value
266
- * @return CreditCard provides a fluent interface.
266
+ * @return $this provides a fluent interface.
267
267
*/
268
268
public function setPhone ($ value )
269
269
{
@@ -273,7 +273,7 @@ public function setPhone($value)
273
273
}
274
274
275
275
/**
276
- * Get the phone number extension.
276
+ * Get the phone number extension.
277
277
*
278
278
* @return string
279
279
*/
@@ -286,7 +286,7 @@ public function getPhoneExtension()
286
286
* Sets the phone number extension.
287
287
*
288
288
* @param string $value
289
- * @return CreditCard provides a fluent interface.
289
+ * @return $this provides a fluent interface.
290
290
*/
291
291
public function setPhoneExtension ($ value )
292
292
{
@@ -296,7 +296,7 @@ public function setPhoneExtension($value)
296
296
}
297
297
298
298
/**
299
- * Get the fax number..
299
+ * Get the fax number..
300
300
*
301
301
* @return string
302
302
*/
@@ -309,7 +309,7 @@ public function getFax()
309
309
* Sets the fax number.
310
310
*
311
311
* @param string $value
312
- * @return CreditCard provides a fluent interface.
312
+ * @return $this provides a fluent interface.
313
313
*/
314
314
public function setFax ($ value )
315
315
{
@@ -319,7 +319,7 @@ public function setFax($value)
319
319
}
320
320
321
321
/**
322
- * Get the card company name.
322
+ * Get the company name.
323
323
*
324
324
* @return string
325
325
*/
@@ -332,7 +332,7 @@ public function getCompany()
332
332
* Sets the company name.
333
333
*
334
334
* @param string $value
335
- * @return CreditCard provides a fluent interface.
335
+ * @return $this provides a fluent interface.
336
336
*/
337
337
public function setCompany ($ value )
338
338
{
@@ -342,7 +342,7 @@ public function setCompany($value)
342
342
}
343
343
344
344
/**
345
- * Get the cardholder 's email address.
345
+ * Get the customer 's email address.
346
346
*
347
347
* @return string
348
348
*/
@@ -352,18 +352,18 @@ public function getEmail()
352
352
}
353
353
354
354
/**
355
- * Sets the cardholder 's email address.
355
+ * Sets the customer 's email address.
356
356
*
357
357
* @param string $value
358
- * @return CreditCard provides a fluent interface.
358
+ * @return $this provides a fluent interface.
359
359
*/
360
360
public function setEmail ($ value )
361
361
{
362
362
return $ this ->setParameter ('email ' , $ value );
363
363
}
364
364
365
365
/**
366
- * Get the cardholder 's birthday.
366
+ * Get the customer 's birthday.
367
367
*
368
368
* @return string
369
369
*/
@@ -375,10 +375,10 @@ public function getBirthday($format = 'Y-m-d')
375
375
}
376
376
377
377
/**
378
- * Sets the cardholder 's birthday.
378
+ * Sets the customer 's birthday.
379
379
*
380
380
* @param string $value
381
- * @return CreditCard provides a fluent interface.
381
+ * @return $this provides a fluent interface.
382
382
*/
383
383
public function setBirthday ($ value )
384
384
{
@@ -392,7 +392,7 @@ public function setBirthday($value)
392
392
}
393
393
394
394
/**
395
- * Get the cardholder 's gender.
395
+ * Get the customer 's gender.
396
396
*
397
397
* @return string
398
398
*/
@@ -402,10 +402,10 @@ public function getGender()
402
402
}
403
403
404
404
/**
405
- * Sets the cardholder 's gender.
405
+ * Sets the customer 's gender.
406
406
*
407
407
* @param string $value
408
- * @return CreditCard provides a fluent interface.
408
+ * @return $this provides a fluent interface.
409
409
*/
410
410
public function setGender ($ value )
411
411
{
0 commit comments