Enter a type and click search.




Results for AuthorizenetAcceptjsSaleHandler

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

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

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsSaleCommand 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="AuthorizenetAcceptjsSaleHandler"
             type="AuthorizenetAcceptjsAuthorizationHandler">
    <arguments>
        <argument name="handlers" xsi:type="array">
            <item name="close_parent_transaction" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Response\CloseParentTransactionHandler
            </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 AuthorizenetAcceptjsSaleHandler object that it should return a AuthorizenetAcceptjsAuthorizationHandler object.

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

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