Enter a type and click search.




Results for AuthorizenetAcceptjsRefundSettledHandler

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsRefundSettledCommand"
             type="AuthorizenetAcceptjsAuthorizeCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            AuthorizenetAcceptjsRefundRequest
        </argument>
        <argument name="handler" xsi:type="object">
            AuthorizenetAcceptjsRefundSettledHandler
        </argument>
        <argument name="validator" xsi:type="object">
            AuthorizenetAcceptjsTransactionValidator
        </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 AuthorizenetAcceptjsRefundSettledCommand object that it should return a AuthorizenetAcceptjsAuthorizeCommand object.

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

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsRefundSettledHandler"
             type="Magento\Payment\Gateway\Response\HandlerChain">
    <arguments>
        <argument name="handlers" xsi:type="array">
            <item name="transaction_id" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Response\TransactionIdHandler
            </item>
            <item name="close_transaction" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Response\ClosePartialTransactionHandler
            </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 AuthorizenetAcceptjsRefundSettledHandler object that it should return a Magento\Payment\Gateway\Response\HandlerChain object.

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

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