Fix return for real.
This commit is contained in:
parent
0649ef21c6
commit
2ccfa7b8f6
|
@ -18,7 +18,7 @@ public function retrieve($id)
|
|||
{
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue