Enter a type and click search.




Results for PayflowproCommandPool

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

<virtualType name="PayflowproCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="vault_authorize" xsi:type="string">
                Magento\Paypal\Gateway\Payflowpro\Command\AuthorizationCommand
            </item>
            <item name="vault_sale" xsi:type="string">
                Magento\Paypal\Gateway\Payflowpro\Command\SaleCommand
            </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 PayflowproCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

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

  • $commands = [...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.