<?php declare(strict_types=1); /* * This file is part of dacore bundle for Contao. * * (c) Benjamin Roth * * @license commercial */ namespace vossmedien\DacoreBundle\ContaoManager; use Contao\CoreBundle\ContaoCoreBundle; use Contao\ManagerPlugin\Bundle\BundlePluginInterface; use Contao\ManagerPlugin\Bundle\Config\BundleConfig; use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; use vossmedien\DacoreBundle\VossmedienDacoreBundle; class Plugin implements BundlePluginInterface { /** * {@inheritdoc} */ public function getBundles(ParserInterface $parser): array { return [ BundleConfig::create(VossmedienDacoreBundle::class) ->setLoadAfter([ContaoCoreBundle::class]), ]; } }