Enter a type and click search.




Results for AmazonConfigValueHandler

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

<virtualType name="AmazonValueHandlerPool"
             type="Magento\Payment\Gateway\Config\ValueHandlerPool">
    <arguments>
        <argument name="handlers" xsi:type="array">
            <item name="default" xsi:type="string">
                AmazonConfigValueHandler
            </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 AmazonValueHandlerPool object that it should return a Magento\Payment\Gateway\Config\ValueHandlerPool object.

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

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

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

<virtualType name="AmazonConfigValueHandler"
             type="Magento\Payment\Gateway\Config\ConfigValueHandler">
    <arguments>
        <argument name="configInterface" xsi:type="object">
            AmazonGatewayConfig
        </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 AmazonConfigValueHandler object that it should return a Magento\Payment\Gateway\Config\ConfigValueHandler object.

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