Browse Source

no longer need this trait out of the box

Taylor Otwell 8 years ago
parent
commit
4a44a0d3d5
1 changed files with 1 additions and 2 deletions
  1. 1 2
      app/Http/Controllers/Auth/AuthController.php

+ 1 - 2
app/Http/Controllers/Auth/AuthController.php

@@ -5,7 +5,6 @@ namespace App\Http\Controllers\Auth;
 use App\User;
 use Validator;
 use App\Http\Controllers\Controller;
-use Illuminate\Foundation\Auth\ThrottlesLogins;
 use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
 
 class AuthController extends Controller
@@ -21,7 +20,7 @@ class AuthController extends Controller
     |
     */
 
-    use AuthenticatesAndRegistersUsers, ThrottlesLogins;
+    use AuthenticatesAndRegistersUsers;
 
     /**
      * Where to redirect users after login / registration.