Skip to content

Commit 24325f1

Browse files
committed
Fix composer, update phpdocs
1 parent 83aecd0 commit 24325f1

File tree

2 files changed

+39
-40
lines changed

2 files changed

+39
-40
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"require": {
3030
"php": ">=5.6",
3131
"alcohol/iso4217": "^3.1",
32-
"beberlei/assert": "^2.4",
3332
"guzzlehttp/guzzle": "^6.0",
3433
"psr/http-message": "^1.0",
3534
"zendframework/zend-diactoros": "^1.1.0"

src/Omnipay/Common/Customer.php

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct(array $parameters = [])
1818
}
1919

2020
/**
21-
* Get Card Title.
21+
* Get Customer Title.
2222
*
2323
* @return string
2424
*/
@@ -28,7 +28,7 @@ public function getTitle()
2828
}
2929

3030
/**
31-
* Set Card Title.
31+
* Set Customer Title.
3232
*
3333
* @param string $value Parameter value
3434
* @return CreditCard provides a fluent interface.
@@ -41,7 +41,7 @@ public function setTitle($value)
4141
}
4242

4343
/**
44-
* Get Card First Name.
44+
* Get Customer First Name.
4545
*
4646
* @return string
4747
*/
@@ -51,10 +51,10 @@ public function getFirstName()
5151
}
5252

5353
/**
54-
* Set Card First Name (Billing and Shipping).
54+
* Set Customer First Name (Billing and Shipping).
5555
*
5656
* @param string $value Parameter value
57-
* @return CreditCard provides a fluent interface.
57+
* @return $this provides a fluent interface.
5858
*/
5959
public function setFirstName($value)
6060
{
@@ -64,7 +64,7 @@ public function setFirstName($value)
6464
}
6565

6666
/**
67-
* Get Card Last Name.
67+
* Get Customer Last Name.
6868
*
6969
* @return string
7070
*/
@@ -74,10 +74,10 @@ public function getLastName()
7474
}
7575

7676
/**
77-
* Set Card Last Name (Billing and Shipping).
77+
* Set Customer Last Name (Billing and Shipping).
7878
*
7979
* @param string $value Parameter value
80-
* @return CreditCard provides a fluent interface.
80+
* @return $this provides a fluent interface.
8181
*/
8282
public function setLastName($value)
8383
{
@@ -87,7 +87,7 @@ public function setLastName($value)
8787
}
8888

8989
/**
90-
* Get Card Name.
90+
* Get Customer Name.
9191
*
9292
* @return string
9393
*/
@@ -97,10 +97,10 @@ public function getName()
9797
}
9898

9999
/**
100-
* Set Card Name (Billing and Shipping).
100+
* Set Customer Name (Billing and Shipping).
101101
*
102102
* @param string $value Parameter value
103-
* @return CreditCard provides a fluent interface.
103+
* @return $this provides a fluent interface.
104104
*/
105105
public function setName($value)
106106
{
@@ -125,7 +125,7 @@ public function getAddress1()
125125
* Sets the address, line 1.
126126
*
127127
* @param string $value
128-
* @return CreditCard provides a fluent interface.
128+
* @return $this provides a fluent interface.
129129
*/
130130
public function setAddress1($value)
131131
{
@@ -135,7 +135,7 @@ public function setAddress1($value)
135135
}
136136

137137
/**
138-
* Get the address, line 2.
138+
* Get the address, line 2.
139139
*
140140
* @return string
141141
*/
@@ -148,7 +148,7 @@ public function getAddress2()
148148
* Sets the address, line 2.
149149
*
150150
* @param string $value
151-
* @return CreditCard provides a fluent interface.
151+
* @return $this provides a fluent interface.
152152
*/
153153
public function setAddress2($value)
154154
{
@@ -158,7 +158,7 @@ public function setAddress2($value)
158158
}
159159

160160
/**
161-
* Get the city.
161+
* Get the city.
162162
*
163163
* @return string
164164
*/
@@ -171,7 +171,7 @@ public function getCity()
171171
* Sets the city.
172172
*
173173
* @param string $value
174-
* @return CreditCard provides a fluent interface.
174+
* @return $this provides a fluent interface.
175175
*/
176176
public function setCity($value)
177177
{
@@ -181,7 +181,7 @@ public function setCity($value)
181181
}
182182

183183
/**
184-
* Get the postcode.
184+
* Get the postcode.
185185
*
186186
* @return string
187187
*/
@@ -194,7 +194,7 @@ public function getPostcode()
194194
* Sets the postcode.
195195
*
196196
* @param string $value
197-
* @return CreditCard provides a fluent interface.
197+
* @return $this provides a fluent interface.
198198
*/
199199
public function setPostcode($value)
200200
{
@@ -204,7 +204,7 @@ public function setPostcode($value)
204204
}
205205

206206
/**
207-
* Get the state.
207+
* Get the state.
208208
*
209209
* @return string
210210
*/
@@ -217,7 +217,7 @@ public function getState()
217217
* Sets the state.
218218
*
219219
* @param string $value
220-
* @return CreditCard provides a fluent interface.
220+
* @return $this provides a fluent interface.
221221
*/
222222
public function setState($value)
223223
{
@@ -227,7 +227,7 @@ public function setState($value)
227227
}
228228

229229
/**
230-
* Get the country.
230+
* Get the country.
231231
*
232232
* @return string
233233
*/
@@ -240,7 +240,7 @@ public function getCountry()
240240
* Sets the country.
241241
*
242242
* @param string $value
243-
* @return CreditCard provides a fluent interface.
243+
* @return $this provides a fluent interface.
244244
*/
245245
public function setCountry($value)
246246
{
@@ -250,7 +250,7 @@ public function setCountry($value)
250250
}
251251

252252
/**
253-
* Get the phone number.
253+
* Get the phone number.
254254
*
255255
* @return string
256256
*/
@@ -263,7 +263,7 @@ public function getPhone()
263263
* Sets the phone number.
264264
*
265265
* @param string $value
266-
* @return CreditCard provides a fluent interface.
266+
* @return $this provides a fluent interface.
267267
*/
268268
public function setPhone($value)
269269
{
@@ -273,7 +273,7 @@ public function setPhone($value)
273273
}
274274

275275
/**
276-
* Get the phone number extension.
276+
* Get the phone number extension.
277277
*
278278
* @return string
279279
*/
@@ -286,7 +286,7 @@ public function getPhoneExtension()
286286
* Sets the phone number extension.
287287
*
288288
* @param string $value
289-
* @return CreditCard provides a fluent interface.
289+
* @return $this provides a fluent interface.
290290
*/
291291
public function setPhoneExtension($value)
292292
{
@@ -296,7 +296,7 @@ public function setPhoneExtension($value)
296296
}
297297

298298
/**
299-
* Get the fax number..
299+
* Get the fax number..
300300
*
301301
* @return string
302302
*/
@@ -309,7 +309,7 @@ public function getFax()
309309
* Sets the fax number.
310310
*
311311
* @param string $value
312-
* @return CreditCard provides a fluent interface.
312+
* @return $this provides a fluent interface.
313313
*/
314314
public function setFax($value)
315315
{
@@ -319,7 +319,7 @@ public function setFax($value)
319319
}
320320

321321
/**
322-
* Get the card company name.
322+
* Get the company name.
323323
*
324324
* @return string
325325
*/
@@ -332,7 +332,7 @@ public function getCompany()
332332
* Sets the company name.
333333
*
334334
* @param string $value
335-
* @return CreditCard provides a fluent interface.
335+
* @return $this provides a fluent interface.
336336
*/
337337
public function setCompany($value)
338338
{
@@ -342,7 +342,7 @@ public function setCompany($value)
342342
}
343343

344344
/**
345-
* Get the cardholder's email address.
345+
* Get the customer's email address.
346346
*
347347
* @return string
348348
*/
@@ -352,18 +352,18 @@ public function getEmail()
352352
}
353353

354354
/**
355-
* Sets the cardholder's email address.
355+
* Sets the customer's email address.
356356
*
357357
* @param string $value
358-
* @return CreditCard provides a fluent interface.
358+
* @return $this provides a fluent interface.
359359
*/
360360
public function setEmail($value)
361361
{
362362
return $this->setParameter('email', $value);
363363
}
364364

365365
/**
366-
* Get the cardholder's birthday.
366+
* Get the customer's birthday.
367367
*
368368
* @return string
369369
*/
@@ -375,10 +375,10 @@ public function getBirthday($format = 'Y-m-d')
375375
}
376376

377377
/**
378-
* Sets the cardholder's birthday.
378+
* Sets the customer's birthday.
379379
*
380380
* @param string $value
381-
* @return CreditCard provides a fluent interface.
381+
* @return $this provides a fluent interface.
382382
*/
383383
public function setBirthday($value)
384384
{
@@ -392,7 +392,7 @@ public function setBirthday($value)
392392
}
393393

394394
/**
395-
* Get the cardholder's gender.
395+
* Get the customer's gender.
396396
*
397397
* @return string
398398
*/
@@ -402,10 +402,10 @@ public function getGender()
402402
}
403403

404404
/**
405-
* Sets the cardholder's gender.
405+
* Sets the customer's gender.
406406
*
407407
* @param string $value
408-
* @return CreditCard provides a fluent interface.
408+
* @return $this provides a fluent interface.
409409
*/
410410
public function setGender($value)
411411
{

0 commit comments

Comments
 (0)