Commit 2ccfa7b8 authored by Taylor Otwell's avatar Taylor Otwell

Fix return for real.

parent 0649ef21
...@@ -18,7 +18,7 @@ class Fluent extends Driver { ...@@ -18,7 +18,7 @@ class Fluent extends Driver {
{ {
if (filter_var($id, FILTER_VALIDATE_INT) !== false) if (filter_var($id, FILTER_VALIDATE_INT) !== false)
{ {
DB::table(Config::get('auth.table'))->find($id); return DB::table(Config::get('auth.table'))->find($id);
} }
} }
......
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