mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-29 19:20:18 +02:00
59 lines
1.1 KiB
ReStructuredText
59 lines
1.1 KiB
ReStructuredText
`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, it just knows how they go together.
|
|
|
|
UML Diagram
|
|
-----------
|
|
|
|
.. image:: uml/uml.png
|
|
:alt: Alt AbstractFactory UML Diagram
|
|
:align: center
|
|
|
|
Code
|
|
----
|
|
|
|
You can also find this code on `GitHub`_
|
|
|
|
Parser.php
|
|
|
|
.. literalinclude:: Parser.php
|
|
:language: php
|
|
:linenos:
|
|
|
|
CsvParser.php
|
|
|
|
.. literalinclude:: CsvParser.php
|
|
:language: php
|
|
:linenos:
|
|
|
|
JsonParser.php
|
|
|
|
.. literalinclude:: JsonParser.php
|
|
:language: php
|
|
:linenos:
|
|
|
|
ParserFactory.php
|
|
|
|
.. literalinclude:: ParserFactory.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
|
|
.. __: http://en.wikipedia.org/wiki/Abstract_factory_pattern
|