Files
DesignPatternsPHP/Creational/AbstractFactory/README.md
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

7 lines
308 B
Markdown

# Abstract Factory
## Purpose
To create series of related or dependent objects without specifying their concrete classes.
Usually the created classes all implement the same interface. The client of the abstract factory does not care about how these objects are created, he just knows how they go together.