<?php/** * Copyright (c) 2011-present Qualiteam software Ltd. All rights reserved. * See https://www.x-cart.com/license-agreement.html for license details. */declare(strict_types=1);namespace XCart\Bundle\CommonBundle;use Symfony\Component\HttpKernel\Bundle\Bundle;use XCart\Bundle\CommonBundle\DependencyInjection\Extension\CommonExtension;class CommonBundle extends Bundle{ public function getContainerExtension() { return new CommonExtension(); }}