From 041dc38fe4806eb7c9b345535bff5e1cff39ad01 Mon Sep 17 00:00:00 2001 From: David Grudl Date: Sat, 4 Sep 2021 00:27:23 +0200 Subject: [PATCH] Session::clean() is private (BC break) --- src/Http/Session.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Http/Session.php b/src/Http/Session.php index 4d8cec76..664d63f6 100644 --- a/src/Http/Session.php +++ b/src/Http/Session.php @@ -304,9 +304,8 @@ public function getIterator(): \Iterator /** * Cleans and minimizes meta structures. This method is called automatically on shutdown, do not call it directly. - * @internal */ - public function clean(): void + private function clean(): void { if (!$this->isStarted()) { return;