<?php
namespace Boldr\Shop\ShopBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Boldr\Cms\CmsBundle\{ BoldrCmsBundleInterface, ComposerBundleTrait };
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Boldr\Shop\ShopBundle\DependencyInjection\PriceCalculatorPassesPass;
class BoldrShopBundle extends Bundle implements BoldrCmsBundleInterface
{
use ComposerBundleTrait;
public function getParentBundle(): ?string
{
return null;
}
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new PriceCalculatorPassesPass());
}
}