Enter a type and click search.




Results for BraintreeFacade

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

<virtualType name="BraintreeFacade"
             type="Magento\Payment\Model\Method\Adapter">
    <arguments>
        <argument name="code" xsi:type="const">
            PayPal\Braintree\Model\Ui\ConfigProvider::CODE
        </argument>
        <argument name="formBlockType" xsi:type="string">
            PayPal\Braintree\Block\Form
        </argument>
        <argument name="infoBlockType" xsi:type="string">
            PayPal\Braintree\Block\Info
        </argument>
        <argument name="valueHandlerPool" xsi:type="object">
            BraintreeValueHandlerPool
        </argument>
        <argument name="validatorPool" xsi:type="object">
            BraintreeValidatorPool
        </argument>
        <argument name="commandPool" xsi:type="object">
            BraintreeCommandPool
        </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 BraintreeFacade object that it should return a Magento\Payment\Model\Method\Adapter object.

This configuration tells the Object Manager that when a user wants a BraintreeFacade 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="BraintreePayPalFacade" type="BraintreeFacade">
    <arguments>
        <argument name="code" xsi:type="const">
            PayPal\Braintree\Model\Ui\PayPal\ConfigProvider::PAYPAL_CODE
        </argument>
        <argument name="infoBlockType" xsi:type="string">
            BraintreePayPalInfo
        </argument>
        <argument name="valueHandlerPool" xsi:type="object">
            BraintreePayPalValueHandlerPool
        </argument>
        <argument name="validatorPool" xsi:type="object">
            BraintreePayPalValidatorPool
        </argument>
        <argument name="commandPool" xsi:type="object">
            BraintreePayPalCommandPool
        </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 BraintreePayPalFacade object that it should return a BraintreeFacade object.

This configuration tells the Object Manager that when a user wants a BraintreePayPalFacade 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="BraintreeCreditCardVaultFacade"
             type="Magento\Vault\Model\Method\Vault">
    <arguments>
        <argument name="config" xsi:type="object">
            BraintreeVaultPaymentConfig
        </argument>
        <argument name="valueHandlerPool" xsi:type="object">
            BraintreeVaultPaymentValueHandlerPool
        </argument>
        <argument name="vaultProvider" xsi:type="object">
            BraintreeFacade
        </argument>
        <argument name="code" xsi:type="const">
            PayPal\Braintree\Model\Ui\ConfigProvider::CC_VAULT_CODE
        </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 BraintreeCreditCardVaultFacade object that it should return a Magento\Vault\Model\Method\Vault object.

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