-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
DoctrinehasPRA Pull Request has already been submitted for this issue.A Pull Request has already been submitted for this issue.
Description
The documentation about doctrine state things about subscribers but it's not up to date because the situation changed in the doctrine bundle.
Before:
class MyAwesomeSubscriber implements EventSubscriber
{
// ...
}
# config/services.yaml
services:
# ...
App\Doctrine\MyAwesomeSubscriber:
tags:
- { name: 'doctrine.event_subscriber' }
After:
class MyAwesomeSubscriber implements EventSubscriberInterface
{
// ...
}
(and that's all)
Changed since Doctrine Bundle 2.1.0.
Metadata
Metadata
Assignees
Labels
DoctrinehasPRA Pull Request has already been submitted for this issue.A Pull Request has already been submitted for this issue.