Design Patterns in PHP – Observer pattern

Observer pattern The observer pattern is a software design pattern in which an object, named the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. It is mainly used for implementing distributed event handling systems, in “event driven” software. In […]

Design Patterns in PHP – Observer pattern Read More »