Symfony Messenger pre and post-handle messages
👋 Symfony comes with a lot of useful tools and powerful components, one of which is Messenger.
📚 Messenger allows you to dispatch a message and consume it a/synchronously, put simply you create an object that holds data and a handler to perform your logic with those data.
💡You can use it to perform an asynchronous operation, you push your message in a…