Unverified Commit 5d11bffc authored by Nicolas Widart's avatar Nicolas Widart Committed by GitHub

Merge pull request #473 from darron1217/issue#467

Fix issue#467 id() method checks null instead of false
parents 328d618c bdd44747
...@@ -164,7 +164,7 @@ class SentinelAuthentication implements Authentication ...@@ -164,7 +164,7 @@ class SentinelAuthentication implements Authentication
{ {
$user = $this->user(); $user = $this->user();
if ($user === null) { if ($user === false) {
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment