Skip to content

Commit 00201bc

Browse files
authored
Revert "Revert "Revert "Make sure session is saved after changing (#1573)" (#…" (#1613)
This reverts commit aa9f65b.
1 parent 53c0ac2 commit 00201bc

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/SymfonyHttpDriver.php

-8
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public function isSessionStarted()
5151
public function setSessionValue($name, $value)
5252
{
5353
$this->session->put($name, $value);
54-
$this->saveSession();
5554
}
5655

5756
/**
@@ -76,12 +75,5 @@ public function getSessionValue($name)
7675
public function deleteSessionValue($name)
7776
{
7877
$this->session->remove($name);
79-
$this->saveSession();
80-
}
81-
82-
protected function saveSession()
83-
{
84-
$this->session->reflash();
85-
$this->session->save();
8678
}
8779
}

0 commit comments

Comments
 (0)