Enter a type and click search.




Results for AuthorizenetAcceptjsCaptureRequest

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="AuthorizenetAcceptjsCaptureRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="request_type" xsi:type="string">
                AuthorizenetAcceptjsTransactionRequestTypeBuilder
            </item>
            <item name="store" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\StoreConfigBuilder
            </item>
            <item name="merchant_account" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\AuthenticationDataBuilder
            </item>
            <item name="transaction_type" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\CaptureDataBuilder
            </item>
            <item name="passthrough_data" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\PassthroughDataBuilder
            </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 AuthorizenetAcceptjsCaptureRequest object that it should return a Magento\Payment\Gateway\Request\BuilderComposite object.

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

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