Skip to content

Commit cbebdc2

Browse files
committed
minor #11267 use App instead of AppBundle (OskarStark)
This PR was merged into the 4.2 branch. Discussion ---------- use App instead of AppBundle <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 120dbaa use App instead of AppBundle
2 parents e7ef09a + 120dbaa commit cbebdc2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doctrine/event_listeners_subscribers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ numbers mean that listeners are invoked earlier.
241241
.. code-block:: php
242242
243243
// config/services.php
244-
use AppBundle\EventListener\MyHighPriorityListener;
245-
use AppBundle\EventListener\MyLowPriorityListener;
244+
use App\EventListener\MyHighPriorityListener;
245+
use App\EventListener\MyLowPriorityListener;
246246
247247
$container
248248
->autowire(MyHighPriorityListener::class)

reference/forms/types/entity.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ This option allows you to move certain choices to the top of your list with a vi
286286
separator between them and the rest of the options. This option expects an array
287287
of entity objects::
288288

289-
use AppBundle\Entity\User;
289+
use App\Entity\User;
290290
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
291291
// ...
292292

routing/optional_placeholders.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ the available blog posts for this imaginary blog application:
1111

1212
.. code-block:: php-annotations
1313
14-
// src/AppBundle/Controller/BlogController.php
14+
// src/App/Controller/BlogController.php
1515
use Symfony\Component\Routing\Annotation\Route;
1616
1717
// ...

0 commit comments

Comments
 (0)