Enter a type and click search.




Results for PayflowproCommandManager

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

<type name="Magento\Payment\Gateway\Command\CommandManagerPool">
    <arguments>
        <argument name="executors" xsi:type="array">
            <item name="payflowpro" xsi:type="string">
                PayflowproCommandManager
            </item>
        </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\Command\CommandManagerPool object that the following arguments should be used in the foo object's constructor.

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

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

<virtualType name="PayflowproCommandManager"
             type="Magento\Payment\Gateway\Command\CommandManager">
    <arguments>
        <argument name="commandPool" xsi:type="object">
            PayflowproCommandPool
        </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 PayflowproCommandManager object that it should return a Magento\Payment\Gateway\Command\CommandManager object.

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