We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac62f8 commit 3b7925cCopy full SHA for 3b7925c
bundles.rst
@@ -53,7 +53,7 @@ Start by creating a ``src/Acme/TestBundle/`` directory and adding a new file
53
called ``AcmeTestBundle.php``::
54
55
// src/Acme/TestBundle/AcmeTestBundle.php
56
- namespace Acme\TestBundle;
+ namespace App\Acme\TestBundle;
57
58
use Symfony\Component\HttpKernel\Bundle\Bundle;
59
@@ -75,7 +75,7 @@ of the bundle. Now that you've created the bundle, enable it::
75
// config/bundles.php
76
return [
77
// ...
78
- Acme\TestBundle\AcmeTestBundle::class => ['all' => true],
+ App\Acme\TestBundle\AcmeTestBundle::class => ['all' => true],
79
];
80
81
And while it doesn't do anything yet, AcmeTestBundle is now ready to be used.
0 commit comments