Browse Source

Fix return for real.

Taylor Otwell 12 years ago
parent
commit
2ccfa7b8f6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/auth/drivers/fluent.php

+ 1 - 1
laravel/auth/drivers/fluent.php

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