Skip to content

Latest commit

 

History

History
 
 

AbstractFactory

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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, it just knows how they go together.

UML Diagram

Alt AbstractFactory UML Diagram

Code

You can also find this code on GitHub

Product.php

Product.php

ShippableProduct.php

ShippableProduct.php

DigitalProduct.php

DigitalProduct.php

ProductFactory.php

ProductFactory.php

Test

Tests/AbstractFactoryTest.php

Tests/AbstractFactoryTest.php