Enter a type and click search.




Results for BraintreeApplePayAuthorizeRequest

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

<virtualType name="BraintreeApplePayAuthorizeCommand"
             type="PayPal\Braintree\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeApplePayAuthorizeRequest
        </argument>
        <argument name="transferFactory" xsi:type="object">
            PayPal\Braintree\Gateway\Http\TransferFactory
        </argument>
        <argument name="client" xsi:type="object">
            PayPal\Braintree\Gateway\Http\Client\TransactionSale
        </argument>
        <argument name="handler" xsi:type="object">
            BraintreeApplePayAuthorizationHandler
        </argument>
        <argument name="validator" xsi:type="object">
            PayPal\Braintree\Gateway\Validator\ResponseValidator
        </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 BraintreeApplePayAuthorizeCommand object that it should return a PayPal\Braintree\Gateway\Command\GatewayCommand object.

This configuration tells the Object Manager that when a user wants a BraintreeApplePayAuthorizeCommand 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="BraintreeApplePayAuthorizeRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="customer" xsi:type="string">
                PayPal\Braintree\Gateway\Request\CustomerDataBuilder
            </item>
            <item name="payment" xsi:type="string">
                PayPal\Braintree\Gateway\Request\PaymentDataBuilder
            </item>
            <item name="channel" xsi:type="string">
                PayPal\Braintree\Gateway\Request\ChannelDataBuilder
            </item>
            <item name="address" xsi:type="string">
                PayPal\Braintree\Gateway\Request\AddressDataBuilder
            </item>
            <item name="dynamic_descriptor" xsi:type="string">
                PayPal\Braintree\Gateway\Request\DescriptorDataBuilder
            </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 BraintreeApplePayAuthorizeRequest object that it should return a Magento\Payment\Gateway\Request\BuilderComposite object.

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

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

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

<virtualType name="BraintreeApplePaySaleRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="authorize" xsi:type="string">
                BraintreeApplePayAuthorizeRequest
            </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 BraintreeApplePaySaleRequest object that it should return a Magento\Payment\Gateway\Request\BuilderComposite object.

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

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