From 00201bcd1eaf9b1d3debddcdc13c219e4835fb61 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Wed, 10 Apr 2024 11:15:45 +0200 Subject: [PATCH] =?UTF-8?q?Revert=20"Revert=20"Revert=20"Make=20sure=20ses?= =?UTF-8?q?sion=20is=20saved=20after=20changing=20(#1573)"=20(#=E2=80=A6"?= =?UTF-8?q?=20(#1613)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit aa9f65b91e8037d72601ebe5b342a425c7040961. --- src/SymfonyHttpDriver.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/SymfonyHttpDriver.php b/src/SymfonyHttpDriver.php index 9679036f2..088a5ab9f 100644 --- a/src/SymfonyHttpDriver.php +++ b/src/SymfonyHttpDriver.php @@ -51,7 +51,6 @@ public function isSessionStarted() public function setSessionValue($name, $value) { $this->session->put($name, $value); - $this->saveSession(); } /** @@ -76,12 +75,5 @@ public function getSessionValue($name) public function deleteSessionValue($name) { $this->session->remove($name); - $this->saveSession(); - } - - protected function saveSession() - { - $this->session->reflash(); - $this->session->save(); } }