Enter a type and click search.




Results for BraintreeVaultSaleRequest

File: vendor/paypal/module-braintree-core/etc/di.xml

<virtualType name="BraintreeVaultSaleCommand"
             type="BraintreeVaultAuthorizeCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeVaultSaleRequest
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual BraintreeVaultSaleCommand object that it should return a BraintreeVaultAuthorizeCommand object.

This configuration tells the Object Manager that when a user wants a BraintreeVaultSaleCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/paypal/module-braintree-core/etc/di.xml

<virtualType name="BraintreeVaultSaleRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="authorize" xsi:type="string">
                BraintreeVaultAuthorizeRequest
            </item>
            <item name="settlement" xsi:type="string">
                PayPal\Braintree\Gateway\Request\SettlementDataBuilder
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual BraintreeVaultSaleRequest object that it should return a Magento\Payment\Gateway\Request\BuilderComposite object.

This configuration tells the Object Manager that when a user wants a BraintreeVaultSaleRequest object that the following arguments should be used in the foo object's constructor.

  • $builders = [...items...];