diff --git a/sample/payments/CreatePayment.php b/sample/payments/CreatePayment.php index ccbfa76..5c17c7e 100644 --- a/sample/payments/CreatePayment.php +++ b/sample/payments/CreatePayment.php @@ -81,8 +81,8 @@ $payment->setIntent("sale") ->setTransactions(array($transaction)); // ### Create Payment -// Create a payment by posting to the APIService -// using a valid ApiContext (See bootstrap.php for more on `ApiContext`) +// Create a payment by calling the payment->create() method +// with a valid ApiContext (See bootstrap.php for more on `ApiContext`) // The return object contains the state. try { $payment->create($apiContext); diff --git a/sample/source/CreatePayment.html b/sample/source/CreatePayment.html index e3f1073..e1c57d2 100644 --- a/sample/source/CreatePayment.html +++ b/sample/source/CreatePayment.html @@ -60,8 +60,8 @@ the above types and intent set to sale 'sale'
Create Payment
-Create a payment by posting to the APIService -using a valid ApiContext (See bootstrap.php for more on
ApiContext) +Create a payment by calling the payment->create() method +with a valid ApiContext (See bootstrap.php for more on
ApiContext) The return object contains the state.