]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Middleware/ThrottleApiRequests.php
Added login throttling test, updated reset-pw test method names
[bookstack] / app / Http / Middleware / ThrottleApiRequests.php
index d08840cd1f857415e76a2496b200c22873c30d9f..c63d0c6033d4b6918a9970a9f495af2f1432430e 100644 (file)
@@ -6,7 +6,6 @@ use Illuminate\Routing\Middleware\ThrottleRequests as Middleware;
 
 class ThrottleApiRequests extends Middleware
 {
-
     /**
      * Resolve the number of attempts if the user is authenticated or not.
      */
@@ -14,5 +13,4 @@ class ThrottleApiRequests extends Middleware
     {
         return (int) config('api.requests_per_minute');
     }
-
-}
\ No newline at end of file
+}