From 7e5fe59c6d1c1c9651dcfb45212db99150f3faa1 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Wed, 29 Mar 2023 16:01:08 -0400 Subject: [PATCH] [Cache] Removing null coalescing assignment operator on 5.4 --- src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php b/src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php index 16a0691cb2b42..700ad95b94abc 100644 --- a/src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php @@ -339,7 +339,7 @@ protected function doSave(array $values, int $lifetime) */ protected function getId($key) { - if ('pgsql' !== $this->platformName ??= $this->getPlatformName()) { + if ('pgsql' !== $this->getPlatformName()) { return parent::getId($key); }