Enter a type and click search.




Results for Magento\Braintree\Gateway\Http\TransferFactory

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="BraintreeCaptureCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeCaptureRequest
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Magento\Braintree\Gateway\Http\TransferFactory
        </argument>
        <argument name="client" xsi:type="object">
            Magento\Braintree\Gateway\Http\Client\TransactionSubmitForSettlement
        </argument>
        <argument name="handler" xsi:type="object">
            Magento\Braintree\Gateway\Response\TransactionIdHandler
        </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 BraintreeCaptureCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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

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

<virtualType name="BraintreeVaultAuthorizeCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeVaultAuthorizeRequest
        </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">
            BraintreeVaultResponseHandler
        </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 BraintreeVaultAuthorizeCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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

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

<virtualType name="BraintreeVaultCaptureCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeVaultCaptureRequest
        </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">
            Magento\Braintree\Gateway\Response\TransactionIdHandler
        </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 BraintreeVaultCaptureCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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

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

<virtualType name="BraintreeVoidCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="client" xsi:type="object">
            Magento\Braintree\Gateway\Http\Client\TransactionVoid
        </argument>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeVoidRequestBuilder
        </argument>
        <argument name="handler" xsi:type="object">
            Magento\Braintree\Gateway\Response\VoidHandler
        </argument>
        <argument name="validator" xsi:type="object">
            Magento\Braintree\Gateway\Validator\GeneralResponseValidator
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Magento\Braintree\Gateway\Http\TransferFactory
        </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 BraintreeVoidCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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

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

<virtualType name="BraintreeRefundCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="client" xsi:type="object">
            Magento\Braintree\Gateway\Http\Client\TransactionRefund
        </argument>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeRefundBuilder
        </argument>
        <argument name="validator" xsi:type="object">
            Magento\Braintree\Gateway\Validator\GeneralResponseValidator
        </argument>
        <argument name="handler" xsi:type="object">
            Magento\Braintree\Gateway\Response\RefundHandler
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Magento\Braintree\Gateway\Http\TransferFactory
        </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 BraintreeRefundCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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