Enter a type and click search.




Results for BraintreeGooglePay

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

<type name="PayPal\Braintree\Block\GooglePay\Shortcut\Button">
    <arguments>
        <argument name="data" xsi:type="array">
            <item name="template" xsi:type="string">
                PayPal_Braintree::googlepay/shortcut.phtml
            </item>
            <item name="alias" xsi:type="string">
                braintree.googlepay.mini-cart
            </item>
            <item name="button_id" xsi:type="string">
                braintree-googlepay-mini-cart
            </item>
        </argument>
        <argument name="payment" xsi:type="object">
            BraintreeGooglePay
        </argument>
    </arguments>
</type>

This is a type configuration.

This configuration is for the frontend area. This is the area that corresponds with the cart sub-application.

This configuration tells the Object Manager that when a user wants a PayPal\Braintree\Block\GooglePay\Shortcut\Button object that the following arguments should be used in the foo object's constructor.

Results for BraintreeGooglePay

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

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

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