mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-26 06:19:20 +02:00
execute read-the-docs.sh
This commit is contained in:
69
Creational/AbstractFactory/index.rst
Normal file
69
Creational/AbstractFactory/index.rst
Normal file
@@ -0,0 +1,69 @@
|
||||
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.
|
||||
|
||||
UML Diagram
|
||||
-----------
|
||||
|
||||
.. image:: uml/uml.png
|
||||
:alt: Alt AbstractFactory UML Diagram
|
||||
:align: center
|
||||
|
||||
Code
|
||||
----
|
||||
|
||||
You can also find these code on `GitHub`_
|
||||
|
||||
Text.php
|
||||
|
||||
.. literalinclude:: Text.php
|
||||
:language: php
|
||||
:linenos:
|
||||
|
||||
JsonFactory.php
|
||||
|
||||
.. literalinclude:: JsonFactory.php
|
||||
:language: php
|
||||
:linenos:
|
||||
|
||||
AbstractFactory.php
|
||||
|
||||
.. literalinclude:: AbstractFactory.php
|
||||
:language: php
|
||||
:linenos:
|
||||
|
||||
MediaInterface.php
|
||||
|
||||
.. literalinclude:: MediaInterface.php
|
||||
:language: php
|
||||
:linenos:
|
||||
|
||||
HtmlFactory.php
|
||||
|
||||
.. literalinclude:: HtmlFactory.php
|
||||
:language: php
|
||||
:linenos:
|
||||
|
||||
Picture.php
|
||||
|
||||
.. literalinclude:: Picture.php
|
||||
:language: php
|
||||
:linenos:
|
||||
|
||||
Test
|
||||
----
|
||||
|
||||
Tests/AbstractFactoryTest.php
|
||||
|
||||
.. literalinclude:: Tests/AbstractFactoryTest.php
|
||||
:language: php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Creational/AbstractFactory
|
Reference in New Issue
Block a user