Enter a type and click search.




Results for AuthorizenetAcceptjsCaptureTransactionHandler

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

<virtualType name="AuthorizenetAcceptjsSettleCommand"
             type="AuthorizenetAcceptjsAuthorizeCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            AuthorizenetAcceptjsCaptureRequest
        </argument>
        <argument name="handler" xsi:type="object">
            AuthorizenetAcceptjsCaptureTransactionHandler
        </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 AuthorizenetAcceptjsSettleCommand object that it should return a AuthorizenetAcceptjsAuthorizeCommand object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsSettleCommand 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="AuthorizenetAcceptjsCaptureTransactionHandler"
             type="Magento\Payment\Gateway\Response\HandlerChain">
    <arguments>
        <argument name="handlers" xsi:type="array">
            <item name="close_transaction" xsi:type="string">
                CloseCaptureTransactionHandler
            </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 AuthorizenetAcceptjsCaptureTransactionHandler object that it should return a Magento\Payment\Gateway\Response\HandlerChain object.

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

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