vendor/coresphere/console-bundle/CoreSphereConsoleBundle.php line 17

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the CoreSphereConsoleBundle.
  4.  *
  5.  * (c) Laszlo Korte <me@laszlokorte.de>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace CoreSphere\ConsoleBundle;
  11. use CoreSphere\ConsoleBundle\DependencyInjection\Extension\CoreSphereConsoleExtension;
  12. use Symfony\Component\HttpKernel\Bundle\Bundle;
  13. class CoreSphereConsoleBundle extends Bundle
  14. {
  15.     /**
  16.      * {@inheritdoc}
  17.      */
  18.     public function getContainerExtension()
  19.     {
  20.         return new CoreSphereConsoleExtension();
  21.     }
  22. }