event driven architecture

  • Sample Listener implementation in Symfony 5+

    Event Driven Architecture is a very powerful pattern for modern PHP Enterprise Systems Applications. In Symfony is very easy to implement actions that are executed when a particular type of event happens using listeners.

    Let's say you

    ...
  • What is a listener in Symfony Framework

    In the Symfony Framework, a listener is a class that listens to a specific event and executes a specific code when that event occurs. Listeners are used extensively in Symfony to implement various functionalities in a decoupled and reusable

    ...