mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-20 21:39:51 +02:00
README in TemplateMethod
This commit is contained in:
parent
ea3e477a74
commit
c5d0030f5f
@ -3,21 +3,7 @@
|
||||
namespace DesignPatterns\TemplateMethod;
|
||||
|
||||
/**
|
||||
* Template Method is a behavioral design pattern.
|
||||
*
|
||||
* Perhaps you have encountered it many times already. The idea is to let subclasses
|
||||
* of this abstract template "finish" the behavior of an algorithm.
|
||||
*
|
||||
* A.k.a the "Hollywood principle" : "" Don't call us, we call you. ""
|
||||
* This class is not called by subclasses but the inverse.
|
||||
* How ? With abstraction of course.
|
||||
*
|
||||
* In other words, this is a skeleton of algorithm, well-suited for framework
|
||||
* libraries. The user has just to implement one method and the superclass do
|
||||
* the job.
|
||||
*
|
||||
* It is an easy way to decouple concrete classes and reduce copy-paste,
|
||||
* that's why you'll find it everywhere.
|
||||
*
|
||||
*/
|
||||
abstract class Journey
|
||||
{
|
||||
|
14
TemplateMethod/README.md
Normal file
14
TemplateMethod/README.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Template Method
|
||||
|
||||
## Purpose
|
||||
|
||||
Template Method is a behavioral design pattern.
|
||||
|
||||
Perhaps you have encountered it many times already. The idea is to let subclasses of this abstract template "finish" the behavior of an algorithm.
|
||||
|
||||
A.k.a the "Hollywood principle": "Don't call us, we call you." This class is not called by subclasses but the inverse.
|
||||
How? With abstraction of course.
|
||||
|
||||
In other words, this is a skeleton of algorithm, well-suited for framework libraries. The user has just to implement one method and the superclass do the job.
|
||||
|
||||
It is an easy way to decouple concrete classes and reduce copy-paste, that's why you'll find it everywhere.
|
Loading…
x
Reference in New Issue
Block a user