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
Request
VaultDataBuilder.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Braintree\Gateway\Request
;
7
8
use
Magento\Payment\Gateway\Request\BuilderInterface
;
9
13
class
VaultDataBuilder
implements
BuilderInterface
14
{
18
const
OPTIONS
=
'options'
;
19
24
const
STORE_IN_VAULT_ON_SUCCESS
=
'storeInVaultOnSuccess'
;
25
29
public
function
build
(array $buildSubject)
30
{
31
return
[
32
self::OPTIONS => [
33
self::STORE_IN_VAULT_ON_SUCCESS => true
34
]
35
];
36
}
37
}
Magento\Braintree\Gateway\Request\VaultDataBuilder\build
build(array $buildSubject)
Definition:
VaultDataBuilder.php:29
Magento\Braintree\Gateway\Request
Definition:
AddressDataBuilder.php:6
Magento\Braintree\Gateway\Request\VaultDataBuilder
Definition:
VaultDataBuilder.php:13
Magento\Braintree\Gateway\Request\VaultDataBuilder\STORE_IN_VAULT_ON_SUCCESS
const STORE_IN_VAULT_ON_SUCCESS
Definition:
VaultDataBuilder.php:24
Magento\Payment\Gateway\Request\BuilderInterface
Definition:
BuilderInterface.php:14
Magento\Braintree\Gateway\Request\VaultDataBuilder\OPTIONS
const OPTIONS
Definition:
VaultDataBuilder.php:18