You are trying to debug a Command, ScheduledTask or Message on the queue? Symfony Profiler and toolbar For the frontend it is easy, you can just use the Symfony Profiler – easily activated by turning on the dev mode. This can be done, by changing APP_ENV=”prod” to APP_ENV=”dev” in your .env file. And then youContinue reading “Shopware: Debug SQL Queries on the CLI”
Tag Archives: scheduledtask
MessengerPass::getServiceClass() must be of the type string, null returned
You are implement a scheduled task in Shopware 6 and get a weird error message? Then you maybe copied the classnames of your TaskHandler and/or Task with a \ prefix. This is wrong: This is correct: The difference? The id: I hope this helps someone 🙂