Skip to content

Commit eaebabf

Browse files
committed
minor #9063 Update bundles.rst (moon-watcher)
This PR was squashed before being merged into the 4.0 branch (closes #9063). Discussion ---------- Update bundles.rst I needed to add those modifications for the bundle creation to work Commits ------- 3b7925c Update bundles.rst
2 parents cac62f8 + 3b7925c commit eaebabf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bundles.rst

Lines changed: 2 additions & 2 deletions
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)