@@ -68,9 +68,10 @@ in case a specific other bundle is not registered::
68
68
switch ($name) {
69
69
case 'acme_something':
70
70
case 'acme_other':
71
- // set use_acme_goodbye to false in the config of acme_something and acme_other
72
- // note that if the user manually configured use_acme_goodbye to true in the
73
- // app/config/config.yml then the setting would in the end be true and not false
71
+ // set use_acme_goodbye to false in the config of
72
+ // acme_something and acme_other note that if the user manually
73
+ // configured use_acme_goodbye to true in the app/config/config.yml
74
+ // then the setting would in the end be true and not false
74
75
$container->prependExtensionConfig($name, $config);
75
76
break;
76
77
}
@@ -79,7 +80,8 @@ in case a specific other bundle is not registered::
79
80
80
81
// process the configuration of AcmeHelloExtension
81
82
$configs = $container->getExtensionConfig($this->getAlias());
82
- // use the Configuration class to generate a config array with the settings "acme_hello"
83
+ // use the Configuration class to generate a config array with
84
+ // the settings "acme_hello"
83
85
$config = $this->processConfiguration(new Configuration(), $configs);
84
86
85
87
// check if entity_manager_name is set in the "acme_hello" configuration
@@ -121,11 +123,11 @@ for ``acme_hello`` is set to ``non_default``:
121
123
122
124
// app/config/config.php
123
125
$container->loadFromExtension('acme_something', array(
124
- ...,
126
+ // ...
125
127
'use_acme_goodbye' => false,
126
128
'entity_manager_name' => 'non_default',
127
129
));
128
130
$container->loadFromExtension('acme_other', array(
129
- ...,
131
+ // ...
130
132
'use_acme_goodbye' => false,
131
133
));
0 commit comments