Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/GatewayChecksum.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

class GatewayChecksum
{
private const VERSION = "P8.25";
private const VERSION = "P8.26";
public static $checksum = "";
public static $baseChecksum = "ebc10b96a0e6018ddb8ab1300cb28f4c";
public static $baseChecksum = "300c1a6729e583d5ece26c4d29cbddac";
public static $versionNo = GatewayChecksum::VERSION;

//////////////////////////////////////////////////////////////////////
Expand Down
1 change: 1 addition & 0 deletions src/GatewayCodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,5 @@ class GatewayCodes {
const REASON_MISSING_CUSTOMER_PHONE = 467;
const REASON_INVALID_CUSTOMER_IP = 468;
const REASON_MISSING_CUSTOMER_IP = 469;
const REASON_INVALID_APPLE_PAY_TOKEN = 470;
}
5 changes: 5 additions & 0 deletions src/GatewayRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,11 @@ static function GOOGLE_PAY_TOKEN()
return "GOOGLEPAYTOKEN";
}

static function APPLE_PAY_TOKEN()
{
return "APPLEPAYTOKEN";
}

static function LANGUAGE()
{
return "LANGUAGE";
Expand Down