Skip to content

Commit

Permalink
Fix the order of code statements in the code snippet
Browse files Browse the repository at this point in the history
This will make the doctor-rst CI job green again.
  • Loading branch information
stof committed Apr 6, 2023
1 parent 6454c36 commit 5756c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doctrine/events.rst
Original file line number Diff line number Diff line change
Expand Up @@ -424,10 +424,10 @@ want to log all the database activity. To do so, define a subscriber for the

use App\Entity\Product;
use Doctrine\Bundle\DoctrineBundle\EventSubscriber\EventSubscriberInterface;
use Doctrine\ORM\Events;
use Doctrine\ORM\Event\PostPersistEventArgs;
use Doctrine\ORM\Event\PostRemoveEventArgs;
use Doctrine\ORM\Event\PostUpdateEventArgs;
use Doctrine\ORM\Events;

class DatabaseActivitySubscriber implements EventSubscriberInterface
{
Expand Down

0 comments on commit 5756c45

Please sign in to comment.