Fix return for real.

This commit is contained in:
Taylor Otwell 2012-05-02 16:06:20 -05:00
parent 0649ef21c6
commit 2ccfa7b8f6
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}