From f742274b5c6092938c00d3bb3b09d11497e64aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Go=CC=88rlach?= Date: Mon, 29 Jul 2019 22:47:05 +0200 Subject: [PATCH] fixed bundle class --- src/ContaoManager/Plugin.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ContaoManager/Plugin.php b/src/ContaoManager/Plugin.php index 32d11fa..68432ef 100755 --- a/src/ContaoManager/Plugin.php +++ b/src/ContaoManager/Plugin.php @@ -1,7 +1,7 @@ * @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace ContaoChangeNewsMoreBundleBundle\ContaoManager; +namespace ContaoChangeNewsMoreBundle\ContaoManager; -use ContaoChangeNewsMoreBundleBundle\ContaoChangeNewsMoreBundleBundle; +use ContaoChangeNewsMoreBundle\ContaoChangeNewsMoreBundle; use Contao\CoreBundle\ContaoCoreBundle; use Contao\ManagerPlugin\Bundle\BundlePluginInterface; use Contao\ManagerPlugin\Bundle\Config\BundleConfig; @@ -31,7 +31,7 @@ class Plugin implements BundlePluginInterface public function getBundles(ParserInterface $parser) { return [ - BundleConfig::create(ContaoChangeNewsMoreBundleBundle::class) + BundleConfig::create(ContaoChangeNewsMoreBundle::class) ->setLoadAfter([ContaoCoreBundle::class]) ]; }