This example is not actual: ```php $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 https://github.com/symfony/symfony/issues/44535#issuecomment-990097084