File tree 4 files changed +42
-2
lines changed
4 files changed +42
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Version 1.4.1
4
+
5
+ _ Fri 06 May 2022_
6
+
7
+ - Add an empty class for PS upgrade compatibility (INC-1751)
8
+
3
9
## Version 1.4.0
4
10
5
11
_ Thu 24 Feb 2022_
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ echo $createCheckoutRequest->getRawLog();
249
249
POST /v2/checkouts HTTP/2
250
250
Host: global-api-sandbox.afterpay.com
251
251
Authorization: Basic MzM******************************************************************************************************************************************************************************TA=
252
- User-Agent: afterpay-sdk-php/1.4.0 (PHP/8.1.1; cURL/7.77.0; Merchant/*****)
252
+ User-Agent: afterpay-sdk-php/1.4.1 (PHP/8.1.1; cURL/7.77.0; Merchant/*****)
253
253
Accept: */*
254
254
Content-Type: application/json
255
255
Content-Length: 1223
Original file line number Diff line number Diff line change 2
2
"name" : " afterpay-global/afterpay-sdk-php" ,
3
3
"license" : " Apache-2.0" ,
4
4
"description" : " Official Afterpay SDK for PHP" ,
5
- "version" : " 1.4.0 " ,
5
+ "version" : " 1.4.1 " ,
6
6
"authors" : [
7
7
{
8
8
"name" : " Afterpay" ,
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /**
4
+ * @copyright Copyright (c) 2020-2021 Afterpay Corporate Services Pty Ltd
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
18
+
19
+ /**
20
+ * This file needs to be here to avoid a debris issue
21
+ * See INC-1751; #apt-im-01124
22
+ */
23
+
24
+ namespace Afterpay \SDK \HTTP \Response ;
25
+
26
+ use Afterpay \SDK \HTTP \Response ;
27
+
28
+ class CreateCheckout extends Response
29
+ {
30
+ public function __construct ()
31
+ {
32
+ parent ::__construct ();
33
+ }
34
+ }
You can’t perform that action at this time.
0 commit comments