Skip to content

Commit 01b22aa

Browse files
samizdamn.gnato
andauthored
Prepare config fix release (#8)
Co-authored-by: n.gnato <[email protected]>
1 parent 040e120 commit 01b22aa

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.6] - 2025-06-27
11+
12+
### Fixed
13+
- MiddlewareBuildr::$config initial value - use empty array
14+
1015
## [0.0.5] - 2025-06-27
1116

1217
### Added
@@ -49,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4954
### Added
5055
- Router, RequestHandlerFactory and FastRoute backed implementation of basics
5156

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
5359
[0.0.5]: https://github.com/FreeElephants/psr-router/releases/tag/0.0.5
5460
[0.0.4]: https://github.com/FreeElephants/psr-router/releases/tag/0.0.4
5561
[0.0.3]: https://github.com/FreeElephants/psr-router/releases/tag/0.0.3

src/FreeElephants/Middleware/Laminas/MiddlewareBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class MiddlewareBuilder
1717
'PUT',
1818
'DELETE',
1919
];
20-
private array $config;
20+
private array $config = [];
2121
private ContainerInterface $container;
2222
private array $defaultMethods = self::DEFAULT_METHODS;
2323

0 commit comments

Comments
 (0)