Fix return for real.

This commit is contained in:
Taylor Otwell
2012-05-02 16:06:20 -05:00
parent 0649ef21c6
commit 2ccfa7b8f6

View File

@@ -18,7 +18,7 @@ class Fluent extends Driver {
{
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);
}
}