Skip to content

Commit

Permalink
Remove unneeded parameter (#23583)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdfloyd authored and taylorotwell committed Mar 17, 2018
1 parent d64e500 commit 1f62d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Routing/Middleware/ValidateSignature.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ValidateSignature
*/
public function handle($request, Closure $next)
{
if ($request->hasValidSignature($request)) {
if ($request->hasValidSignature()) {
return $next($request);
}

Expand Down

0 comments on commit 1f62d23

Please sign in to comment.