Skip to content

Commit abf9466

Browse files
committed
Match the names as used in the API Reference
1 parent a18c8d5 commit abf9466

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

PayPalExpressCheckout/authorization-and-capture-continue.php renamed to PayPalExpressCheckout/authorization-and-capture-continued.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
define("AUTHORIZENET_LOG_FILE", "phplog");
77

8-
function payPalAuthorizeCaptureContinue($refTransId, $payerID)
8+
function payPalAuthorizeCaptureContinued($refTransId, $payerID)
99
{
1010
/* Create a merchantAuthenticationType object with authentication details
1111
retrieved from the constants file */
@@ -86,5 +86,5 @@ function payPalAuthorizeCaptureContinue($refTransId, $payerID)
8686
}
8787

8888
if(!defined('DONT_RUN_SAMPLES'))
89-
payPalAuthorizeCaptureContinue("2241708986","6ZSCSYG33VP8Q");
89+
payPalAuthorizeCaptureContinued("2241708986","6ZSCSYG33VP8Q");
9090
?>

test-runner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,10 @@ private static function runPayPalAuthorizeCapture()
190190
return payPalAuthorizeCapture(self::getAmount());
191191
}
192192

193-
private static function runPayPalAuthorizeCaptureContinue()
193+
private static function runPayPalAuthorizeCaptureContinued()
194194
{
195195
$response = payPalAuthorizeCapture(self::getAmount());
196-
return payPalAuthorizeCaptureContinue($response->getTransactionResponse()->getTransId(), self::$payerID);
196+
return payPalAuthorizeCaptureContinued($response->getTransactionResponse()->getTransId(), self::$payerID);
197197
}
198198

199199
public static function runPayPalAuthorizeOnlyContinue()

0 commit comments

Comments
 (0)