Closed
Description
This example is not actual:
$databaseConnectionOrDSN = 'postgresql://myuser:mypassword@localhost:5634/lock';
$store = new PostgreSqlStore($databaseConnectionOrDSN);
Correct way is to use DoctrineDbalPostgreSqlStore
with a string like this 'postgresql://myuser:mypassword@localhost:5634/lock'
https://symfony.com/doc/current/components/lock.html#postgresqlstore
symfony/symfony#44535 (comment)