mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-08 00:53:19 +02:00
use Anonymous Hyperlinks for wikipedia link
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
`Chain Of Responsibilities`_
|
||||
============================
|
||||
`Chain Of Responsibilities`__
|
||||
=============================
|
||||
|
||||
Purpose:
|
||||
--------
|
||||
@ -67,4 +67,4 @@ Tests/ChainTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/ChainOfResponsibilities
|
||||
.. _`Chain Of Responsibilities`: http://en.wikipedia.org/wiki/Chain_of_responsibility_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Chain_of_responsibility_pattern
|
@ -1,5 +1,5 @@
|
||||
`Command`_
|
||||
==========
|
||||
`Command`__
|
||||
===========
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -74,4 +74,4 @@ Tests/CommandTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Command
|
||||
.. _`Command`: http://en.wikipedia.org/wiki/Command_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Command_pattern
|
@ -1,5 +1,5 @@
|
||||
`Iterator`_
|
||||
===========
|
||||
`Iterator`__
|
||||
============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -67,4 +67,4 @@ Tests/IteratorTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Iterator
|
||||
.. _`Iterator`: http://en.wikipedia.org/wiki/Iterator_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Iterator_pattern
|
@ -1,5 +1,5 @@
|
||||
`Mediator`_
|
||||
===========
|
||||
`Mediator`__
|
||||
============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -70,4 +70,4 @@ Tests/MediatorTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Mediator
|
||||
.. _`Mediator`: http://en.wikipedia.org/wiki/Mediator_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Mediator_pattern
|
@ -1,5 +1,5 @@
|
||||
`Memento`_
|
||||
==========
|
||||
`Memento`__
|
||||
===========
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -65,4 +65,4 @@ Tests/MementoTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Memento
|
||||
.. _`Memento`: http://en.wikipedia.org/wiki/Memento_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Memento_pattern
|
@ -1,5 +1,5 @@
|
||||
`Null Object`_
|
||||
==============
|
||||
`Null Object`__
|
||||
===============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -72,4 +72,4 @@ Tests/LoggerTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/NullObject
|
||||
.. _`Null Object`: http://en.wikipedia.org/wiki/Null_Object_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Null_Object_pattern
|
@ -1,5 +1,5 @@
|
||||
`Observer`_
|
||||
===========
|
||||
`Observer`__
|
||||
============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -55,4 +55,4 @@ Tests/ObserverTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Observer
|
||||
.. _`Observer`: http://en.wikipedia.org/wiki/Observer_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Observer_pattern
|
@ -1,5 +1,5 @@
|
||||
`Specification`_
|
||||
================
|
||||
`Specification`__
|
||||
=================
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -78,4 +78,4 @@ Tests/SpecificationTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Specification
|
||||
.. _`Specification`: http://en.wikipedia.org/wiki/Specification_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Specification_pattern
|
||||
|
@ -1,5 +1,5 @@
|
||||
`State`_
|
||||
========
|
||||
`State`__
|
||||
=========
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -54,4 +54,4 @@ Test
|
||||
----
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/State
|
||||
.. _`State`: http://en.wikipedia.org/wiki/State_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/State_pattern
|
@ -1,5 +1,5 @@
|
||||
`Strategy`_
|
||||
===========
|
||||
`Strategy`__
|
||||
============
|
||||
|
||||
Terminology:
|
||||
------------
|
||||
@ -68,4 +68,4 @@ Tests/StrategyTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Strategy
|
||||
.. _`Strategy`: http://en.wikipedia.org/wiki/Strategy_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Strategy_pattern
|
@ -1,5 +1,5 @@
|
||||
`Template Method`_
|
||||
==================
|
||||
`Template Method`__
|
||||
===================
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -61,4 +61,4 @@ Tests/JourneyTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/TemplateMethod
|
||||
.. _`Template Method`: http://en.wikipedia.org/wiki/Template_method_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Template_method_pattern
|
@ -1,5 +1,5 @@
|
||||
`Visitor`_
|
||||
==========
|
||||
`Visitor`__
|
||||
===========
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@ -65,4 +65,4 @@ Tests/VisitorTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Behavioral/Visitor
|
||||
.. _`Visitor`: http://en.wikipedia.org/wiki/Visitor_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Visitor_pattern
|
Reference in New Issue
Block a user