Skip to content

Commit 5756c45

Browse files
committed
Fix the order of code statements in the code snippet
This will make the doctor-rst CI job green again.
1 parent 6454c36 commit 5756c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doctrine/events.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,10 +424,10 @@ want to log all the database activity. To do so, define a subscriber for the
424424

425425
use App\Entity\Product;
426426
use Doctrine\Bundle\DoctrineBundle\EventSubscriber\EventSubscriberInterface;
427-
use Doctrine\ORM\Events;
428427
use Doctrine\ORM\Event\PostPersistEventArgs;
429428
use Doctrine\ORM\Event\PostRemoveEventArgs;
430429
use Doctrine\ORM\Event\PostUpdateEventArgs;
430+
use Doctrine\ORM\Events;
431431

432432
class DatabaseActivitySubscriber implements EventSubscriberInterface
433433
{

0 commit comments

Comments
 (0)