Application Design

Articles about software application design and related topics.

December 13, 2022

Abstract Factory Pattern in PHP

The Abstract Factory Pattern is a useful pattern for creating families of objects that are related and have common characteristics.

Read

December 12, 2022

Decorator Pattern in PHP

The decorator pattern is a great way to add extra functionality to an existing object without having to change the original code. This allows developers to quickly add new features to an existing object without having to go through the entire codebase.

Read