From 93fc00bc176145037dd15abdc43f99c4ee78cf19 Mon Sep 17 00:00:00 2001 From: Roman Martinuk Date: Fri, 2 Apr 2021 16:17:10 +0300 Subject: [PATCH] remove references to "Silex" --- Session/Storage/MockFileSessionStorage.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Session/Storage/MockFileSessionStorage.php b/Session/Storage/MockFileSessionStorage.php index 380f656b0..00e997b06 100644 --- a/Session/Storage/MockFileSessionStorage.php +++ b/Session/Storage/MockFileSessionStorage.php @@ -114,9 +114,8 @@ public function save() $this->data = $data; } - // this is needed for Silex, where the session object is re-used across requests - // in functional tests. In Symfony, the container is rebooted, so we don't have - // this issue + // this is needed when the session object is re-used across multiple requests + // in functional tests. $this->started = false; }