From 0bf082b0d895668e574acda05b7d82357586edcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jag=C5=82a?= Date: Thu, 10 Aug 2023 07:07:26 +0200 Subject: [PATCH] Avoid dynamic property for PHP 8.2 compatibility --- Setup/Patch/Data/UpgradeBvDataAtttribute.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Setup/Patch/Data/UpgradeBvDataAtttribute.php b/Setup/Patch/Data/UpgradeBvDataAtttribute.php index 00025c9..7e4c571 100644 --- a/Setup/Patch/Data/UpgradeBvDataAtttribute.php +++ b/Setup/Patch/Data/UpgradeBvDataAtttribute.php @@ -56,6 +56,10 @@ class UpgradeBvDataAtttribute implements DataPatchInterface, PatchRevertableInte * @var \Magento\Config\App\Config\Source\RuntimeConfigSource */ private $runtimeConfigSource; + /** + * @var ModuleListInterface + */ + private $_moduleList; public function __construct( ModuleDataSetupInterface $moduleDataSetup, @@ -264,4 +268,4 @@ public static function getVersion() { return '9.0.0'; } -} \ No newline at end of file +}