Skip to content

Commit

Permalink
Add getContainerExtension method (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattamon authored Feb 27, 2025
1 parent d8ee1d4 commit 2fad00f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/PimcoreCustomerManagementFrameworkBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use CustomerManagementFrameworkBundle\DependencyInjection\Compiler\CustomerSaveManagerPass;
use CustomerManagementFrameworkBundle\DependencyInjection\Compiler\NewsletterManagerPass;
use CustomerManagementFrameworkBundle\DependencyInjection\Compiler\SegmentManagerPass;
use CustomerManagementFrameworkBundle\DependencyInjection\PimcoreCustomerManagementFrameworkExtension;
use Pimcore\Bundle\AdminBundle\PimcoreAdminBundle;
use Pimcore\Bundle\ApplicationLoggerBundle\PimcoreApplicationLoggerBundle;
use Pimcore\Bundle\NewsletterBundle\PimcoreNewsletterBundle;
Expand All @@ -29,12 +30,18 @@
use Pimcore\HttpKernel\Bundle\DependentBundleInterface;
use Pimcore\HttpKernel\BundleCollection\BundleCollection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;

class PimcoreCustomerManagementFrameworkBundle extends AbstractPimcoreBundle implements DependentBundleInterface, PimcoreBundleAdminClassicInterface
{
use BundleAdminClassicTrait;
use PackageVersionTrait;

public function getContainerExtension(): ExtensionInterface
{
return new PimcoreCustomerManagementFrameworkExtension();
}

protected function getComposerPackageName(): string
{
return 'pimcore/customer-management-framework-bundle';
Expand Down

0 comments on commit 2fad00f

Please sign in to comment.