Enter a type and click search.




Results for BraintreeAuthorizeRequest

File: vendor/magento/module-braintree/etc/di.xml

<virtualType name="BraintreeAuthorizeCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeAuthorizeRequest
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Magento\Braintree\Gateway\Http\TransferFactory
        </argument>
        <argument name="client" xsi:type="object">
            Magento\Braintree\Gateway\Http\Client\TransactionSale
        </argument>
        <argument name="handler" xsi:type="object">
            BraintreeAuthorizationHandler
        </argument>
        <argument name="validator" xsi:type="object">
            Magento\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 BraintreeAuthorizeCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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

File: vendor/magento/module-braintree/etc/di.xml

<virtualType name="BraintreeAuthorizeRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="customer" xsi:type="string">
                Magento\Braintree\Gateway\Request\CustomerDataBuilder
            </item>
            <item name="payment" xsi:type="string">
                Magento\Braintree\Gateway\Request\PaymentDataBuilder
            </item>
            <item name="channel" xsi:type="string">
                Magento\Braintree\Gateway\Request\ChannelDataBuilder
            </item>
            <item name="address" xsi:type="string">
                Magento\Braintree\Gateway\Request\AddressDataBuilder
            </item>
            <item name="vault" xsi:type="string">
                Magento\Braintree\Gateway\Request\VaultDataBuilder
            </item>
            <item name="3dsecure" xsi:type="string">
                Magento\Braintree\Gateway\Request\ThreeDSecureDataBuilder
            </item>
            <item name="device_data" xsi:type="string">
                Magento\Braintree\Gateway\Request\KountPaymentDataBuilder
            </item>
            <item name="dynamic_descriptor" xsi:type="string">
                Magento\Braintree\Gateway\Request\DescriptorDataBuilder
            </item>
            <item name="store" xsi:type="string">
                Magento\Braintree\Gateway\Request\StoreConfigBuilder
            </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 BraintreeAuthorizeRequest object that it should return a Magento\Payment\Gateway\Request\BuilderComposite object.

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

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

File: vendor/magento/module-braintree/etc/di.xml

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

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

  • $builders = [...items...];
Results for BraintreeAuthorizeRequest

File: vendor/magento/module-braintree/etc/adminhtml/di.xml

<virtualType name="BraintreeAuthorizeRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="customer" xsi:type="string">
                Magento\Braintree\Gateway\Request\CustomerDataBuilder
            </item>
            <item name="payment" xsi:type="string">
                Magento\Braintree\Gateway\Request\PaymentDataBuilder
            </item>
            <item name="channel" xsi:type="string">
                Magento\Braintree\Gateway\Request\ChannelDataBuilder
            </item>
            <item name="address" xsi:type="string">
                Magento\Braintree\Gateway\Request\AddressDataBuilder
            </item>
            <item name="vault" xsi:type="string">
                Magento\Braintree\Gateway\Request\VaultDataBuilder
            </item>
            <item name="dynamic_descriptor" xsi:type="string">
                Magento\Braintree\Gateway\Request\DescriptorDataBuilder
            </item>
            <item name="store" xsi:type="string">
                Magento\Braintree\Gateway\Request\StoreConfigBuilder
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the adminhtml area. This is the area that corresponds with the Magento admin sub-application.

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

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

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