| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Similar to the AbstractFactory, this pattern is used to create series of related or dependent objects. The difference between this and the abstract factory pattern is that the static factory pattern uses just one static method to create all types of objects it can create. It is usually named factory or build.
You can also find these code on GitHub
StaticFactory.php
.. literalinclude:: StaticFactory.php :language: php :linenos:
FormatterInterface.php
.. literalinclude:: FormatterInterface.php :language: php :linenos:
FormatString.php
.. literalinclude:: FormatString.php :language: php :linenos:
FormatNumber.php
.. literalinclude:: FormatNumber.php :language: php :linenos:
Tests/StaticFactoryTest.php
.. literalinclude:: Tests/StaticFactoryTest.php :language: php :linenos:
| Back | FazBrowse Home | New Git URL |