vendor/xcart/common-bundle/src/CommonBundle.php line 15

Open in your IDE?
  1. <?php
  2. /**
  3.  * Copyright (c) 2011-present Qualiteam software Ltd. All rights reserved.
  4.  * See https://www.x-cart.com/license-agreement.html for license details.
  5.  */
  6. declare(strict_types=1);
  7. namespace XCart\Bundle\CommonBundle;
  8. use Symfony\Component\HttpKernel\Bundle\Bundle;
  9. use XCart\Bundle\CommonBundle\DependencyInjection\Extension\CommonExtension;
  10. class CommonBundle extends Bundle
  11. {
  12.     public function getContainerExtension()
  13.     {
  14.         return new CommonExtension();
  15.     }
  16. }