From 7c31290c5249ee18195cbe9990f06cb00e9b4c16 Mon Sep 17 00:00:00 2001 From: josephzhao Date: Fri, 19 Jan 2024 14:42:13 -0500 Subject: [PATCH] Update VirtualSessionStorage.php compatible with php-8.3 --- src/Ratchet/Session/Storage/VirtualSessionStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ratchet/Session/Storage/VirtualSessionStorage.php b/src/Ratchet/Session/Storage/VirtualSessionStorage.php index daa10bba..b92cf076 100644 --- a/src/Ratchet/Session/Storage/VirtualSessionStorage.php +++ b/src/Ratchet/Session/Storage/VirtualSessionStorage.php @@ -25,7 +25,7 @@ public function __construct(\SessionHandlerInterface $handler, $sessionId, Handl /** * {@inheritdoc} */ - public function start() { + public function start() : bool { if ($this->started && !$this->closed) { return true; }