@@ -17,28 +17,30 @@ This project is set of simple examples of usage of different design patterns in
17
17
- [ bridge] ( https://medium.com/better-programming/what-is-bridge-design-pattern-89bfa581fbd3 )
18
18
- [ chain of responsibility] ( https://medium.com/@j.kapuscik2/what-is-chain-of-responsibility-design-pattern-ff4d22abd124 )
19
19
- [ visitor] ( https://medium.com/@j.kapuscik2/what-is-visitor-design-pattern-8451fb75876 )
20
+ - [ command] ( https://medium.com/@j.kapuscik2/what-is-cqrs-command-design-pattern-5d400fd9f93a )
20
21
- [ null object] ( https://medium.com/@j.kapuscik2/what-is-null-object-design-pattern-f3b4d3d28636 )
21
22
22
- Following patterns have so far been described:
23
+ ### Following patterns have so far been described:
23
24
24
- Creational:
25
+ #### Creational:
25
26
1 . [ Factory Method] ( /creational/factory_method )
26
27
2 . [ Abstract Factory] ( /creational/abstract_factory )
27
28
3 . [ Singleton] ( /creational/singleton )
28
29
4 . [ Builder] ( /creational/builder )
29
30
5 . [ Prototype] ( /creational/prototype )
30
31
31
- Behavioral:
32
+ #### Behavioral:
32
33
1 . [ Iterator] ( /behavioral/iterator )
33
34
2 . [ Observer] ( /behavioral/observer )
34
35
3 . [ State] ( /behavioral/state )
35
36
4 . [ Strategy] ( /behavioral/strategy )
36
37
5 . [ Template Method] ( /behavioral/template_method )
37
38
6 . [ Chain of Responsibility] ( /behavioral/chain_of_responsibility )
38
39
7 . [ Visitor] ( /behavioral/visitor )
39
- 8 . [ Null Object] ( /behavioral/null_object )
40
-
41
- Structural:
40
+ 8 . [ Command] ( /behavioral/command )
41
+ 9 . [ Null Object] ( /behavioral/null_object )
42
+
43
+ #### Structural:
42
44
1 . [ Adapter] ( /structural/adapter )
43
45
2 . [ Decorator] ( /structural/decorator )
44
46
3 . [ Proxy] ( /structural/proxy )
0 commit comments