From b4345d81355a3cf81d27211997537e9016afb6db Mon Sep 17 00:00:00 2001 From: dvesh3 Date: Tue, 29 Aug 2023 15:41:59 +0200 Subject: [PATCH] Fix logTab is not a constructor when accessing Datahub Config - Resolves #344 --- src/PimcoreDataImporterBundle.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/PimcoreDataImporterBundle.php b/src/PimcoreDataImporterBundle.php index f6b36a92..76db64d1 100644 --- a/src/PimcoreDataImporterBundle.php +++ b/src/PimcoreDataImporterBundle.php @@ -151,7 +151,10 @@ public static function registerDependentBundles(BundleCollection $collection): v $collection->addBundle(new PimcoreAdminBundle(), 60); if (\Pimcore\Version::getMajorVersion() >= 11) { - $collection->addBundle(\Pimcore\Bundle\ApplicationLoggerBundle\PimcoreApplicationLoggerBundle::class); + $collection->addBundle( + \Pimcore\Bundle\ApplicationLoggerBundle\PimcoreApplicationLoggerBundle::class, + 10 + ); } }