Skip to content

Commit c38e058

Browse files
Fix return statements
1 parent 2020a37 commit c38e058

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TokenStorage/NativeSessionTokenStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function removeToken($tokenId)
8888
}
8989

9090
if (!isset($_SESSION[$this->namespace][$tokenId])) {
91-
return;
91+
return null;
9292
}
9393

9494
$token = (string) $_SESSION[$this->namespace][$tokenId];

0 commit comments

Comments
 (0)