Enter a type and click search.




Results for shellBackground

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

<type name="Magento\Cron\Observer\ProcessCronQueueObserver">
    <arguments>
        <argument name="shell" xsi:type="object">
            shellBackground
        </argument>
        <argument name="logger" xsi:type="object">
            Magento\Cron\Model\VirtualLogger
        </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\Cron\Observer\ProcessCronQueueObserver object that the following arguments should be used in the foo object's constructor.

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

<virtualType name="shellBackground" type="Magento\Framework\Shell">
    <arguments>
        <argument name="commandRenderer" xsi:type="object">
            Magento\Framework\Shell\CommandRendererBackground
        </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 shellBackground object that it should return a Magento\Framework\Shell object.

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