lib/config-bundle/src/ConfigBundle.php line 17
<?phpnamespace GroupIN\ConfigBundle;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;/*** ConfigBundle** A simple Symfony 5 bundle for general configuration** @author Nephtali Nlandu <nephtalinlandu@gmail.com>* @license http://opensource.org/licenses/MIT The MIT License* @link https://github.com/GroupIN/config-bundle Repo for this bundle*/class ConfigBundle extends Bundle{public function build(ContainerBuilder $container){parent::build($container);}public function getPath(): string{return \dirname(__DIR__);}}