From ebf503c4f63916935e0fb9260e4340375fdfc461 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Tue, 30 Dec 2014 17:34:16 +0000 Subject: [PATCH] Removed the response argument from a before filter --- app/filters/LoginThrottlingFilter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/filters/LoginThrottlingFilter.php b/app/filters/LoginThrottlingFilter.php index b7839e11..271ca183 100644 --- a/app/filters/LoginThrottlingFilter.php +++ b/app/filters/LoginThrottlingFilter.php @@ -2,7 +2,7 @@ class LoginThrottlingFilter { - public function filter($route, $request, $response) + public function filter($route, $request) { // check if we've reached the rate limit, but don't hit the throttle yet // we can hit the throttle later on in the if validation passes