Cron class not found
My cronjob is defined as follows: <?xml version=”1.0″ ?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Cron:etc/crontab.xsd”> <group id=”default”> <job instance=”VendorModuleModelStatus” method=”update” name=”vendor_module_status_update”> <schedule>0 */2 * * *</schedule> </job> </group> </config> Class VendorModuleModelStatus exists and manual test below works fine: <?php declare(strict_types=1); use MagentoFrameworkAppBootstrap; use… Read More »Cron class not found