vendor/paymentsuite/paymentsuite/src/PaymentSuite/PaymentCoreBundle/PaymentCoreBundle.php line 26

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the PaymentSuite package.
  4.  *
  5.  * Copyright (c) 2013-2016 Marc Morera
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  *
  10.  * Feel free to edit as you please, and have fun.
  11.  *
  12.  * @author Marc Morera <yuhu@mmoreram.com>
  13.  */
  14. namespace PaymentSuite\PaymentCoreBundle;
  15. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  16. use Symfony\Component\HttpKernel\Bundle\Bundle;
  17. use PaymentSuite\PaymentCoreBundle\DependencyInjection\PaymentCoreExtension;
  18. /**
  19.  * Core Payment Bundle.
  20.  */
  21. class PaymentCoreBundle extends Bundle
  22. {
  23.     /**
  24.      * Returns the bundle's container extension.
  25.      *
  26.      * @return ExtensionInterface The container extension
  27.      */
  28.     public function getContainerExtension()
  29.     {
  30.         return new PaymentCoreExtension();
  31.     }
  32. }