Skip to content

Commit 501d22f

Browse files
Merge branch '5.4' into 6.0
* 5.4: (26 commits) [Dotenv] Fix testBootEnv() to start from a fresh context fix tests relax expected exception message for forward-compatibility with 5.4 fix expected exception messages after changes made in Definition class [DependencyInjection] show class name on DI errors skip command completion tests with older Symfony Console versions Use GitHub issue form templates Fix CS add ResponseIsUnprocessable Add missing translations for Persian (fa) skip command completion tests with older Symfony Console versions prevent issues with timezones and DST by using only UNIX timestamps Add the missing translations for Bahasa Indonesia (id) [Finder] Fix .gitignore infinite loop Update README.md fix messenger DI dependency for registerAttributeForAutoconfiguration [Messenger] Autoconfigurable attributes Fix deprecations on PHP 8.2 [Dotenv] Fix testLoadEnv() .env.dist isolation Since 5.0, throws \UnexpectedValueException has been removed. ...
2 parents d3bfdc0 + 3626498 commit 501d22f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Store/PostgreSqlStore.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\Lock\Exception\InvalidArgumentException;
1717
use Symfony\Component\Lock\Exception\LockConflictedException;
1818
use Symfony\Component\Lock\Key;
19-
use Symfony\Component\Lock\PersistingStoreInterface;
19+
use Symfony\Component\Lock\SharedLockStoreInterface;
2020

2121
/**
2222
* PostgreSqlStore is a PersistingStoreInterface implementation using
@@ -246,7 +246,7 @@ private function checkDriver(): void
246246
}
247247
}
248248

249-
private function getInternalStore(): PersistingStoreInterface
249+
private function getInternalStore(): SharedLockStoreInterface
250250
{
251251
$namespace = spl_object_hash($this->getConnection());
252252

0 commit comments

Comments
 (0)