Commit bdd44747 authored by 박관영's avatar 박관영

Fix issue#467 id() method checks null instead of false

parent a96dec08
......@@ -164,7 +164,7 @@ class SentinelAuthentication implements Authentication
{
$user = $this->user();
if ($user === null) {
if ($user === false) {
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