diff --git a/CHANGELOG.md b/CHANGELOG.md index b4ab802..c898921 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## Unreleased +### Fixed +- Dynamic properties in ModuleController (#221) + ## 12.0.1 - 2023-09-16 ### Fixed diff --git a/Classes/Controller/ModuleController.php b/Classes/Controller/ModuleController.php index de137de..b1c83b8 100644 --- a/Classes/Controller/ModuleController.php +++ b/Classes/Controller/ModuleController.php @@ -53,6 +53,9 @@ class ModuleController extends ActionController implements LoggerAwareInterface { use LoggerAwareTrait; + private int $pageUid; + private array $exampleConfig; + public function __construct( protected readonly ModuleTemplateFactory $moduleTemplateFactory, protected readonly IconFactory $iconFactory,