From 6b525ac4d7284ab9e907144567fb28c25da7e36d Mon Sep 17 00:00:00 2001 From: David Grudl Date: Mon, 11 Dec 2023 13:39:55 +0100 Subject: [PATCH] typo --- src/Security/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/User.php b/src/Security/User.php index 10dafe72..37e81d79 100644 --- a/src/Security/User.php +++ b/src/Security/User.php @@ -154,7 +154,7 @@ final public function logout(bool $clearIdentity = false): void } $this->authenticated = false; - $this->logoutReason = self::MANUAL; + $this->logoutReason = self::LogoutManual; if ($logged) { Arrays::invoke($this->onLoggedOut, $this); }