Skip to content

Commit dd40b56

Browse files
committed
Merge branch '4.2'
* 4.2: use App instead of AppBundle
2 parents 391aafc + 1601a50 commit dd40b56

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
@@ -291,7 +291,7 @@ This option allows you to move certain choices to the top of your list with a vi
291291
separator between them and the rest of the options. This option expects an array
292292
of entity objects::
293293

294-
use AppBundle\Entity\User;
294+
use App\Entity\User;
295295
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
296296
// ...
297297

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/Controller/BlogController.php
1515
use Symfony\Component\Routing\Annotation\Route;
1616
1717
// ...

0 commit comments

Comments
 (0)