2016-09-22 12:54:03 +02:00

76 lines
1.3 KiB
ReStructuredText

`Specification`__
=================
Purpose
-------
Builds a clear specification of business rules, where objects can be
checked against. The composite specification class has one method called
``isSatisfiedBy`` that returns either true or false depending on whether
the given object satisfies the specification.
Examples
--------
- `RulerZ <https://github.com/K-Phoen/rulerz>`__
UML Diagram
-----------
.. image:: uml/uml.png
:alt: Alt Specification UML Diagram
:align: center
Code
----
You can also find these code on `GitHub`_
Item.php
.. literalinclude:: Item.php
:language: php
:linenos:
SpecificationInterface.php
.. literalinclude:: SpecificationInterface.php
:language: php
:linenos:
OrSpecification.php
.. literalinclude:: OrSpecification.php
:language: php
:linenos:
PriceSpecification.php
.. literalinclude:: PriceSpecification.php
:language: php
:linenos:
AndSpecification.php
.. literalinclude:: AndSpecification.php
:language: php
:linenos:
NotSpecification.php
.. literalinclude:: NotSpecification.php
:language: php
:linenos:
Test
----
Tests/SpecificationTest.php
.. literalinclude:: Tests/SpecificationTest.php
:language: php
:linenos:
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Specification
.. __: http://en.wikipedia.org/wiki/Specification_pattern