Enter a type and click search.




Results for Magento\Payment\Gateway\Command\GatewayCommand

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="AmazonRefundCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            Amazon\Payment\Gateway\Request\RefundRequestBuilder
        </argument>
        <argument name="handler" xsi:type="object">
            Amazon\Payment\Gateway\Response\RefundHandler
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Amazon\Payment\Gateway\Http\TransferFactory
        </argument>
        <argument name="validator" xsi:type="object">
            Amazon\Payment\Gateway\Validator\AuthorizationValidator
        </argument>
        <argument name="client" xsi:type="object">
            Amazon\Payment\Gateway\Http\Client\RefundClient
        </argument>
        <argument name="errorMessageMapper" xsi:type="object">
            Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper
        </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 AmazonRefundCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="AmazonVoidCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            Amazon\Payment\Gateway\Request\VoidRequestBuilder
        </argument>
        <argument name="handler" xsi:type="object">
            Amazon\Payment\Gateway\Response\VoidHandler
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Amazon\Payment\Gateway\Http\TransferFactory
        </argument>
        <argument name="validator" xsi:type="object">
            Amazon\Payment\Gateway\Validator\AuthorizationValidator
        </argument>
        <argument name="client" xsi:type="object">
            Amazon\Payment\Gateway\Http\Client\VoidClient
        </argument>
        <argument name="errorMessageMapper" xsi:type="object">
            Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper
        </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 AmazonVoidCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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

Results for Magento\Payment\Gateway\Command\GatewayCommand

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

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

This configuration tells the Object Manager that when a user wants a BraintreeApplePaySaleCommand 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="BraintreeGooglePaySaleCommand"
             type="Magento\Payment\Gateway\Command\GatewayCommand">
    <arguments>
        <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">
            BraintreeGooglePayAuthorizationHandler
        </argument>
        <argument name="validator" xsi:type="object">
            PayPal\Braintree\Gateway\Validator\ResponseValidator
        </argument>
        <argument name="requestBuilder" xsi:type="object">
            BraintreeGooglePaySaleRequest
        </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 BraintreeGooglePaySaleCommand object that it should return a Magento\Payment\Gateway\Command\GatewayCommand object.

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