mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-25 17:21:19 +02:00
use Anonymous Hyperlinks for wikipedia link
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
`Adapter / Wrapper`_
|
||||
====================
|
||||
`Adapter / Wrapper`__
|
||||
=====================
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -68,4 +68,4 @@ Tests/AdapterTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/Adapter
|
||||
.. _`Adapter / Wrapper`: http://en.wikipedia.org/wiki/Adapter_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Adapter_pattern
|
||||
|
@@ -1,11 +1,11 @@
|
||||
`Bridge`_
|
||||
=========
|
||||
`Bridge`__
|
||||
==========
|
||||
|
||||
Purpose
|
||||
-------
|
||||
|
||||
Decouple an abstraction from its implementation so that the two can vary
|
||||
independently. (http://en.wikipedia.org/wiki/Bridge\_pattern)
|
||||
independently.
|
||||
|
||||
Sample:
|
||||
^^^^^^^
|
||||
@@ -71,4 +71,4 @@ Tests/BridgeTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/Bridge
|
||||
.. _`Bridge`: http://en.wikipedia.org/wiki/Bridge_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Bridge_pattern
|
||||
|
@@ -1,5 +1,5 @@
|
||||
`Composite`_
|
||||
============
|
||||
`Composite`__
|
||||
=============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -62,4 +62,4 @@ Tests/CompositeTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/Composite
|
||||
.. _`Composite`: http://en.wikipedia.org/wiki/Composite_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Composite_pattern
|
||||
|
@@ -1,5 +1,5 @@
|
||||
`Data Mapper`_
|
||||
==============
|
||||
`Data Mapper`__
|
||||
===============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -57,4 +57,4 @@ Tests/DataMapperTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/DataMapper
|
||||
.. _`Data Mapper`: http://en.wikipedia.org/wiki/Data_mapper_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Data_mapper_pattern
|
||||
|
@@ -1,5 +1,5 @@
|
||||
`Decorator`_
|
||||
============
|
||||
`Decorator`__
|
||||
=============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -65,4 +65,4 @@ Tests/DecoratorTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/Decorator
|
||||
.. _`Decorator`: http://en.wikipedia.org/wiki/Decorator_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Decorator_pattern
|
||||
|
@@ -1,5 +1,5 @@
|
||||
`Dependency Injection`_
|
||||
=======================
|
||||
`Dependency Injection`__
|
||||
========================
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -85,4 +85,4 @@ Tests/config.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/DependencyInjection
|
||||
.. _`Dependency Injection`: http://en.wikipedia.org/wiki/Dependency_injection
|
||||
.. __: http://en.wikipedia.org/wiki/Dependency_injection
|
||||
|
@@ -1,5 +1,5 @@
|
||||
`Facade`_
|
||||
=========
|
||||
`Facade`__
|
||||
==========
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -63,4 +63,4 @@ Tests/FacadeTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/Facade
|
||||
.. _`Facade`: http://en.wikipedia.org/wiki/Facade_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Facade_pattern
|
||||
|
@@ -1,5 +1,5 @@
|
||||
`Fluent Interface`_
|
||||
===================
|
||||
`Fluent Interface`__
|
||||
====================
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -43,5 +43,4 @@ Tests/FluentInterfaceTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/FluentInterface
|
||||
|
||||
.. _`Fluent Interface`: http://en.wikipedia.org/wiki/Fluent_interface
|
||||
.. __: http://en.wikipedia.org/wiki/Fluent_interface
|
@@ -1,5 +1,5 @@
|
||||
`Proxy`_
|
||||
========
|
||||
`Proxy`__
|
||||
=========
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -41,4 +41,4 @@ Test
|
||||
----
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/Proxy
|
||||
.. _`Proxy`: http://en.wikipedia.org/wiki/Proxy_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Proxy_pattern
|
||||
|
@@ -1,5 +1,5 @@
|
||||
`Registry`_
|
||||
===========
|
||||
`Registry`__
|
||||
============
|
||||
|
||||
Purpose
|
||||
-------
|
||||
@@ -44,4 +44,4 @@ Tests/RegistryTest.php
|
||||
:linenos:
|
||||
|
||||
.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/Registry
|
||||
.. _`Registry`: http://en.wikipedia.org/wiki/Service_locator_pattern
|
||||
.. __: http://en.wikipedia.org/wiki/Service_locator_pattern
|
||||
|
Reference in New Issue
Block a user