8000 [Cache] Removing null coalescing assignment operator on 5.4 · symfony/symfony@7e5fe59 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7e5fe59

Browse files
committed
[Cache] Removing null coalescing assignment operator on 5.4
1 parent 2794527 commit 7e5fe59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ protected function doSave(array $values, int $lifetime)
339339
*/
340340
protected function getId($key)
341341
{
342-
if ('pgsql' !== $this->platformName ??= $this->getPlatformName()) {
342+
if ('pgsql' !== $this->getPlatformName()) {
343343
return parent::getId($key);
344344
}
345345

0 commit comments

Comments
 (0)
0