Enter a type and click search.




Results for Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper"
             type="Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper">
    <arguments>
        <argument name="messageMapping" xsi:type="object">
            Amazon\Payment\Gateway\ErrorMapper\VirtualMappingData
        </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 Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper object that it should return a Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper object.

This configuration tells the Object Manager that when a user wants a Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper object that the following arguments should be used in the foo object's constructor.

Results for Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper

File: vendor/magento/module-payment/etc/di.xml

<type name="Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper">
    <arguments>
        <argument name="messageMapping" xsi:type="object">
            Magento\Payment\Gateway\ErrorMapper\NullMappingData
        </argument>
    </arguments>
</type>

This is a type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This configuration tells the Object Manager that when a user wants a Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-payment/etc/di.xml

<preference for="Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapperInterface"
            type="Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper"></preference>

This is a preference configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This preference configuration tells the Object Manager when a user wants a Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapperInterface object that it should return a Magento\Payment\Gateway\ErrorMapper\ErrorMessageMapper object.