Enter a type and click search.




Results for AuthorizenetAcceptjsAcceptsFdsRequest

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

<virtualType name="AuthorizenetAcceptjsAcceptFdsCommand"
             type="Magento\AuthorizenetAcceptjs\Gateway\Command\GatewayQueryCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            AuthorizenetAcceptjsAcceptsFdsRequest
        </argument>
        <argument name="transferFactory" xsi:type="object">
            AuthorizenetAcceptjsDefaultTransferFactory
        </argument>
        <argument name="client" xsi:type="object">
            Magento\AuthorizenetAcceptjs\Gateway\Http\Client
        </argument>
        <argument name="validator" xsi:type="object">
            AuthorizenetAcceptjsAcceptsFdsRequestValidator
        </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 AuthorizenetAcceptjsAcceptFdsCommand object that it should return a Magento\AuthorizenetAcceptjs\Gateway\Command\GatewayQueryCommand object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsAcceptFdsCommand 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="AuthorizenetAcceptjsAcceptsFdsRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="request_type" xsi:type="string">
                AuthorizenetAcceptjsAcceptsFdsRequestTypeBuilder
            </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="reference_transaction" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\AcceptFdsDataBuilder
            </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 AuthorizenetAcceptjsAcceptsFdsRequest object that it should return a Magento\Payment\Gateway\Request\BuilderComposite object.

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

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