Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-braintree
Gateway
Http
Client
TransactionSale.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Braintree\Gateway\Http\Client
;
7
11
class
TransactionSale
extends
AbstractTransaction
12
{
16
protected
function
process
(array
$data
)
17
{
18
$storeId
=
$data
[
'store_id'
] ??
null
;
19
// sending store id and other additional keys are restricted by Braintree API
20
unset(
$data
[
'store_id'
]);
21
22
return
$this->adapterFactory->create(
$storeId
)->sale(
$data
);
23
}
24
}
$storeId
$storeId
Definition:
customer_review_with_rating.php:14
Magento\Braintree\Gateway\Http\Client\TransactionSale\process
process(array $data)
Definition:
TransactionSale.php:16
Magento\Braintree\Gateway\Http\Client
Definition:
AbstractTransaction.php:7
Magento\Braintree\Gateway\Http\Client\AbstractTransaction
Definition:
AbstractTransaction.php:19
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Braintree\Gateway\Http\Client\TransactionSale
Definition:
TransactionSale.php:11