Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
VaultDataBuilder.php
Go to the documentation of this file.
1 <?php
7 
9 
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 }