Magento 2: I need to run observer function through Cron job
I want to run an observer function through a Cron job. Can anyone share the simple observer function.? Here is my code <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Cron:etc/crontab.xsd”> <group id=”default”> <job name=”abandon_cron_test” instance=”AbcAbandonObserverAbandon” method=”execute”> <schedule>* * * * *</schedule> </job> </group> </config> Observer… Read More »Magento 2: I need to run observer function through Cron job