Skip to content

Commit c609ef5

Browse files
committed
add wikipedia link
1 parent 9fd800b commit c609ef5

File tree

34 files changed

+188
-64
lines changed

34 files changed

+188
-64
lines changed

Behavioral/ChainOfResponsibilities/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Chain Of Responsibilities
2-
=========================
1+
Chain Of Responsibilities |Wikipedia|_
2+
======================================
33

44
Purpose:
55
--------
@@ -67,3 +67,7 @@ Tests/ChainTest.php
6767
:linenos:
6868

6969
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/ChainOfResponsibilities
70+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
71+
:height: 30 px
72+
:width: 30 px
73+
.. _Wikipedia: http://en.wikipedia.org/wiki/Chain_of_responsibility_pattern

Behavioral/Command/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Command
2-
=======
1+
Command |Wikipedia|_
2+
====================
33

44
Purpose
55
-------
@@ -74,3 +74,7 @@ Tests/CommandTest.php
7474
:linenos:
7575

7676
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Command
77+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
78+
:height: 30 px
79+
:width: 30 px
80+
.. _Wikipedia: http://en.wikipedia.org/wiki/Command_pattern

Behavioral/Iterator/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Iterator
2-
========
1+
Iterator |Wikipedia|_
2+
=====================
33

44
Purpose
55
-------
@@ -67,3 +67,7 @@ Tests/IteratorTest.php
6767
:linenos:
6868

6969
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Iterator
70+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
71+
:height: 30 px
72+
:width: 30 px
73+
.. _Wikipedia: http://en.wikipedia.org/wiki/Iterator_pattern

Behavioral/Mediator/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Mediator
2-
========
1+
Mediator |Wikipedia|_
2+
=====================
33

44
Purpose
55
-------
@@ -70,3 +70,7 @@ Tests/MediatorTest.php
7070
:linenos:
7171

7272
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Mediator
73+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
74+
:height: 30 px
75+
:width: 30 px
76+
.. _Wikipedia: http://en.wikipedia.org/wiki/Mediator_pattern

Behavioral/Memento/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Memento
2-
=======
1+
Memento |Wikipedia|_
2+
====================
33

44
Purpose
55
-------
@@ -65,3 +65,7 @@ Tests/MementoTest.php
6565
:linenos:
6666

6767
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Memento
68+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
69+
:height: 30 px
70+
:width: 30 px
71+
.. _Wikipedia: http://en.wikipedia.org/wiki/Memento_pattern

Behavioral/NullObject/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Null Object
2-
===========
1+
Null Object |Wikipedia|_
2+
========================
33

44
Purpose
55
-------
@@ -72,3 +72,7 @@ Tests/LoggerTest.php
7272
:linenos:
7373

7474
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/NullObject
75+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
76+
:height: 30 px
77+
:width: 30 px
78+
.. _Wikipedia: http://en.wikipedia.org/wiki/Null_Object_pattern

Behavioral/Observer/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Observer
2-
========
1+
Observer |Wikipedia|_
2+
=====================
33

44
Purpose
55
-------
@@ -55,3 +55,7 @@ Tests/ObserverTest.php
5555
:linenos:
5656

5757
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Observer
58+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
59+
:height: 30 px
60+
:width: 30 px
61+
.. _Wikipedia: http://en.wikipedia.org/wiki/Observer_pattern

Behavioral/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ communication.
99
* [Command](Command) [:notebook:](http://en.wikipedia.org/wiki/Command_pattern)
1010
* [Iterator](Iterator) [:notebook:](http://en.wikipedia.org/wiki/Iterator_pattern)
1111
* [Mediator](Mediator) [:notebook:](http://en.wikipedia.org/wiki/Mediator_pattern)
12+
* [Memento](Behavioral/Memento) [:notebook:](http://en.wikipedia.org/wiki/Memento_pattern)
1213
* [NullObject](NullObject) [:notebook:](http://en.wikipedia.org/wiki/Null_Object_pattern)
1314
* [Observer](Observer) [:notebook:](http://en.wikipedia.org/wiki/Observer_pattern)
1415
* [Specification](Specification) [:notebook:](http://en.wikipedia.org/wiki/Specification_pattern)

Behavioral/Specification/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Specification
2-
=============
1+
Specification |Wikipedia|_
2+
==========================
33

44
Purpose
55
-------
@@ -73,3 +73,7 @@ Tests/SpecificationTest.php
7373
:linenos:
7474

7575
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Specification
76+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
77+
:height: 30 px
78+
:width: 30 px
79+
.. _Wikipedia: http://en.wikipedia.org/wiki/Specification_pattern

Behavioral/State/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
State
2-
=====
1+
State |Wikipedia|_
2+
==================
33

44
Purpose
55
-------
@@ -54,3 +54,7 @@ Test
5454
----
5555

5656
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/State
57+
.. |Wikipedia| image:: /_static/Wikipedia-logo.png
58+
:height: 30 px
59+
:width: 30 px
60+
.. _Wikipedia: http://en.wikipedia.org/wiki/State_pattern

0 commit comments

Comments
 (0)