Skip to content

Commit af2ba15

Browse files
committed
Added 'checkNumber' to payment object
1 parent 106b843 commit af2ba15

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/Trolley/Payment.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class Payment extends Base
4242
'payoutMethod',
4343
'coverFees',
4444
'taxReportable',
45+
'checkNumber',
4546
'tags',
4647
'estimatedDeliveryAt',
4748
'initiatedAt',
@@ -50,7 +51,7 @@ class Payment extends Base
5051

5152
/**
5253
* Return all of the Recipient Payments
53-
* @deprecated deprecated since version 3.x.x, will be removed in Q4 2023
54+
* @deprecated deprecated since version 3.x.x, will be removed in Q4 2023. Use Recipient.getAllPayments() instead.
5455
* @throws Exception\NotFound
5556
* @return Iterator of Payment[]
5657
*/
@@ -107,6 +108,7 @@ protected function _initialize($attributes) {
107108
'payoutMethod',
108109
'coverFees',
109110
'taxReportable',
111+
'checkNumber',
110112
'tags',
111113
'estimatedDeliveryAt',
112114
'initiatedAt',

lib/Trolley/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Version
1212
*/
1313
const MAJOR = 3;
1414
const MINOR = 0;
15-
const TINY = 1;
15+
const TINY = 2;
1616

1717
/**
1818
* @ignore

0 commit comments

Comments
 (0)