From 6bf12fe94bc82bead9e848c28b6bb6205e638a48 Mon Sep 17 00:00:00 2001 From: Jacob Dreesen Date: Thu, 4 Nov 2021 11:47:35 +0100 Subject: [PATCH] Remove support for `PimcoreLegacyBundle` in the Kernel --- src/Kernel.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Kernel.php b/src/Kernel.php index afda8c8cb..5794bb06c 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -31,9 +31,5 @@ public function registerBundlesToCollection(BundleCollection $collection) if (class_exists('\\AppBundle\\AppBundle')) { $collection->addBundle(new \AppBundle\AppBundle); } - - if (class_exists('\Pimcore\Bundle\LegacyBundle\PimcoreLegacyBundle')) { - $collection->addBundle(new \Pimcore\Bundle\LegacyBundle\PimcoreLegacyBundle); - } } }