Skip to content

Commit 9dd394c

Browse files
committed
minor #18174 Fix the order of code statements in the code snippet (stof)
This PR was merged into the 6.2 branch. Discussion ---------- Fix the order of code statements in the code snippet This will make the doctor-rst CI job green again. Commits ------- 5756c45 Fix the order of code statements in the code snippet
2 parents 6454c36 + 5756c45 commit 9dd394c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doctrine/events.rst

Lines changed: 1 addition & 1 deletion
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)