@@ -473,9 +473,9 @@ MongoDB Connection String:
473
473
PdoStore
474
474
~~~~~~~~
475
475
476
- The PdoStore saves locks in an SQL database. It is identical to DoctrineDbalStore but requires
477
- a `PDO `_ connection or a `Data Source Name (DSN) `_. This store does not
478
- support blocking, and expects a TTL to avoid stalled locks::
476
+ The PdoStore saves locks in an SQL database. It is identical to DoctrineDbalStore
477
+ but requires a `PDO `_ connection or a `Data Source Name (DSN) `_. This store does
478
+ not support blocking, and expects a TTL to avoid stalled locks::
479
479
480
480
use Symfony\Component\Lock\Store\PdoStore;
481
481
@@ -495,16 +495,17 @@ your code.
495
495
496
496
.. deprecated :: 5.4
497
497
498
- Using ``PdoStore `` with Doctrine DBAL is deprecated in Symfony 5.4. Use ``DoctrineDbalStore `` instead.
498
+ Using ``PdoStore `` with Doctrine DBAL is deprecated in Symfony 5.4.
499
+ Use ``DoctrineDbalStore `` instead.
499
500
500
501
.. _lock-store-dbal :
501
502
502
503
DoctrineDbalStore
503
504
~~~~~~~~~~~~~~~~~
504
505
505
- The DoctrineDbalStore saves locks in an SQL database. It is identical to PdoStore but requires a
506
- `Doctrine DBAL Connection `_, or a `Doctrine DBAL URL `_. This store does not
507
- support blocking, and expects a TTL to avoid stalled locks::
506
+ The DoctrineDbalStore saves locks in an SQL database. It is identical to PdoStore
507
+ but requires a `Doctrine DBAL Connection `_, or a `Doctrine DBAL URL `_. This store
508
+ does not support blocking, and expects a TTL to avoid stalled locks::
508
509
509
510
use Symfony\Component\Lock\Store\PdoStore;
510
511
@@ -525,8 +526,8 @@ in your code or create this table explicitly by calling the
525
526
526
527
.. versionadded :: 5.4
527
528
528
- The ``DoctrineDbalStore `` was introduced in Symfony 5.4 to replace ``PdoStore `` when
529
- used with Doctrine DBAL.
529
+ The ``DoctrineDbalStore `` was introduced in Symfony 5.4 to replace ``PdoStore ``
530
+ when used with Doctrine DBAL.
530
531
531
532
.. _lock-store-pgsql :
532
533
@@ -553,17 +554,17 @@ store locks and it does not expire.
553
554
554
555
.. deprecated :: 5.4
555
556
556
- Using ``PostgreSqlStore `` with Doctrine DBAL is deprecated in Symfony 5.4. Use ``DoctrineDbalPostgreSqlStore `` instead.
557
+ Using ``PostgreSqlStore `` with Doctrine DBAL is deprecated in Symfony 5.4.
558
+ Use ``DoctrineDbalPostgreSqlStore `` instead.
557
559
558
560
.. _lock-store-dbal-pgsql :
559
561
560
562
DoctrineDbalPostgreSqlStore
561
563
~~~~~~~~~~~~~~~~~~~~~~~~~~~
562
564
563
- The DoctrineDbalPostgreSqlStore uses `Advisory Locks `_ provided by PostgreSQL. It is identical to PostgreSqlStore
564
- but requires a `Doctrine DBAL Connection `_ or a `Doctrine DBAL URL `_.
565
- It supports native blocking, as well as sharing
566
- locks::
565
+ The DoctrineDbalPostgreSqlStore uses `Advisory Locks `_ provided by PostgreSQL.
566
+ It is identical to PostgreSqlStore but requires a `Doctrine DBAL Connection `_ or
567
+ a `Doctrine DBAL URL `_. It supports native blocking, as well as sharing locks::
567
568
568
569
use Symfony\Component\Lock\Store\PostgreSqlStore;
569
570
@@ -576,8 +577,8 @@ store locks and does not expire.
576
577
577
578
.. versionadded :: 5.4
578
579
579
- The ``DoctrineDbalPostgreSqlStore `` was introduced in Symfony 5.4 to replace `` PostgreSqlStore `` when
580
- used with Doctrine DBAL.
580
+ The ``DoctrineDbalPostgreSqlStore `` was introduced in Symfony 5.4 to replace
581
+ `` PostgreSqlStore `` when used with Doctrine DBAL.
581
582
582
583
.. _lock-store-redis :
583
584
0 commit comments