File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
src/FreeElephants/Middleware/Laminas Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.0.6] - 2025-06-27
11
+
12
+ ### Fixed
13
+ - MiddlewareBuildr::$config initial value - use empty array
14
+
10
15
## [ 0.0.5] - 2025-06-27
11
16
12
17
### Added
@@ -49,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
49
54
### Added
50
55
- Router, RequestHandlerFactory and FastRoute backed implementation of basics
51
56
52
- [ Unreleased ] : https://github.com/FreeElephants/psr-router/compare/0.0.5...HEAD
57
+ [ Unreleased ] : https://github.com/FreeElephants/psr-router/compare/0.0.6...HEAD
58
+ [ 0.0.6 ] : https://github.com/FreeElephants/psr-router/releases/tag/0.0.6
53
59
[ 0.0.5 ] : https://github.com/FreeElephants/psr-router/releases/tag/0.0.5
54
60
[ 0.0.4 ] : https://github.com/FreeElephants/psr-router/releases/tag/0.0.4
55
61
[ 0.0.3 ] : https://github.com/FreeElephants/psr-router/releases/tag/0.0.3
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class MiddlewareBuilder
17
17
'PUT ' ,
18
18
'DELETE ' ,
19
19
];
20
- private array $ config ;
20
+ private array $ config = [] ;
21
21
private ContainerInterface $ container ;
22
22
private array $ defaultMethods = self ::DEFAULT_METHODS ;
23
23
You can’t perform that action at this time.
0 commit comments