File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ example::
128
128
class SensioFrameworkExtraBundle extends Bundle
129
129
{
130
130
// ...
131
+ }
131
132
132
133
The file itself lives at
133
134
``vendor/bundle/Sensio/Bundle/FrameworkExtraBundle/SensioFrameworkExtraBundle.php ``.
@@ -144,7 +145,7 @@ namespace in the ``vendor/bundle`` directory:
144
145
145
146
// ...
146
147
$loader->registerNamespaces(array(
147
- // ...
148
+ ...,
148
149
'Sensio' => __DIR__.'/../vendor/bundles',
149
150
));
150
151
@@ -236,7 +237,7 @@ class::
236
237
// config/ProjectConfiguration.class.php
237
238
public function setup()
238
239
{
239
- $this->enableAllPluginsExcept(array(/* some plugins here */ ));
240
+ $this->enableAllPluginsExcept(array(... some plugins here));
240
241
}
241
242
242
243
In Symfony2, the bundles are activated inside the application kernel::
@@ -247,7 +248,7 @@ In Symfony2, the bundles are activated inside the application kernel::
247
248
$bundles = array(
248
249
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
249
250
new Symfony\Bundle\TwigBundle\TwigBundle(),
250
- // ...
251
+ ...,
251
252
new Acme\DemoBundle\AcmeDemoBundle(),
252
253
);
253
254
You can’t perform that action at this time.
0 commit comments