From 12e2e544fc1810641cdaec451a912af1d44dcbf8 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 94bd7439..17747e50 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;