Skip to content

Commit 3b7925c

Browse files
moon-watcherjaviereguiluz
authored andcommitted
Update bundles.rst
1 parent cac62f8 commit 3b7925c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bundles.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Start by creating a ``src/Acme/TestBundle/`` directory and adding a new file
5353
called ``AcmeTestBundle.php``::
5454

5555
// src/Acme/TestBundle/AcmeTestBundle.php
56-
namespace Acme\TestBundle;
56+
namespace App\Acme\TestBundle;
5757

5858
use Symfony\Component\HttpKernel\Bundle\Bundle;
5959

@@ -75,7 +75,7 @@ of the bundle. Now that you've created the bundle, enable it::
7575
// config/bundles.php
7676
return [
7777
// ...
78-
Acme\TestBundle\AcmeTestBundle::class => ['all' => true],
78+
App\Acme\TestBundle\AcmeTestBundle::class => ['all' => true],
7979
];
8080

8181
And while it doesn't do anything yet, AcmeTestBundle is now ready to be used.

0 commit comments

Comments
 (0)