When we create a bundle 'MyBundle' with console in symfony, it generate class MyBundleExtension.php inside this class we find a method 'load'
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
}
When i dump the parametre $configs the result is an empty array inside array
From where this parametre was injected and how can i add values for this parametre ?