Enter a type and click search.




Results for BraintreeApplePayValueHandlerPool

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

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

This configuration tells the Object Manager that when a user wants a BraintreeApplePay 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="BraintreeApplePayValueHandlerPool"
             type="Magento\Payment\Gateway\Config\ValueHandlerPool">
    <arguments>
        <argument name="handlers" xsi:type="array">
            <item name="default" xsi:type="string">
                BraintreeApplePayConfigValueHandler
            </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 BraintreeApplePayValueHandlerPool object that it should return a Magento\Payment\Gateway\Config\ValueHandlerPool object.

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

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