lib/config-bundle/src/ConfigBundle.php line 17

  1. <?php
  2. namespace GroupIN\ConfigBundle;
  3. use Symfony\Component\DependencyInjection\ContainerBuilder;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. /**
  6.  * ConfigBundle
  7.  *
  8.  * A simple Symfony 5 bundle for general configuration
  9.  *
  10.  * @author    Nephtali Nlandu <nephtalinlandu@gmail.com>
  11.  * @license   http://opensource.org/licenses/MIT The MIT License
  12.  * @link      https://github.com/GroupIN/config-bundle Repo for this bundle
  13.  */
  14. class ConfigBundle extends Bundle
  15. {
  16.     public function build(ContainerBuilder $container){
  17.         parent::build($container);
  18.     }
  19.     public function getPath(): string
  20.     {
  21.         return \dirname(__DIR__);
  22.     }
  23. }