summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-foundation/Session/Session.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/http-foundation/Session/Session.php')
-rw-r--r--vendor/symfony/http-foundation/Session/Session.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/vendor/symfony/http-foundation/Session/Session.php b/vendor/symfony/http-foundation/Session/Session.php
index 62ce948b68..867ceba97f 100644
--- a/vendor/symfony/http-foundation/Session/Session.php
+++ b/vendor/symfony/http-foundation/Session/Session.php
@@ -193,9 +193,7 @@ class Session implements SessionInterface, \IteratorAggregate, \Countable
*/
public function save()
{
- if ($this->isStarted()) {
- $this->storage->save();
- }
+ $this->storage->save();
}
/**