public static function Braintree_Transaction::submitForSettlementNoValidate in Commerce Braintree 7
3 calls to Braintree_Transaction::submitForSettlementNoValidate()
- Braintree_TransactionTest::testSubmitForSettlementNoValidate_whenInvalid in braintree_php/
tests/ integration/ TransactionTest.php - Braintree_TransactionTest::testSubmitForSettlementNoValidate_whenValidWithAmount in braintree_php/
tests/ integration/ TransactionTest.php - Braintree_TransactionTest::testSubmitForSettlementNoValidate_whenValidWithoutAmount in braintree_php/
tests/ integration/ TransactionTest.php
File
- braintree_php/
lib/ Braintree/ Transaction.php, line 455
Class
- Braintree_Transaction
- Creates and manages transactions
Code
public static function submitForSettlementNoValidate($transactionId, $amount = null) {
$result = self::submitForSettlement($transactionId, $amount);
return self::returnObjectOrThrowException(__CLASS__, $result);
}