mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-19 15:14:47 +01:00
28 lines
829 B
ReStructuredText
28 lines
829 B
ReStructuredText
.. meta::
|
|
:description: a collection of creational design patterns along with implementations in PHP8
|
|
:keywords: design patterns, php, creational, best practices
|
|
|
|
`Creational`__
|
|
==============
|
|
|
|
In software engineering, creational design patterns are design patterns
|
|
that deal with object creation mechanisms, trying to create objects in a
|
|
manner suitable to the situation. The basic form of object creation
|
|
could result in design problems or added complexity to the design.
|
|
Creational design patterns solve this problem by somehow controlling
|
|
this object creation.
|
|
|
|
.. toctree::
|
|
:titlesonly:
|
|
|
|
AbstractFactory/README
|
|
Builder/README
|
|
FactoryMethod/README
|
|
Pool/README
|
|
Prototype/README
|
|
SimpleFactory/README
|
|
Singleton/README
|
|
StaticFactory/README
|
|
|
|
.. __: http://en.wikipedia.org/wiki/Creational_pattern
|