From 23a716a3ac82acb33c40d4f9d0ff233a2b7bb687 Mon Sep 17 00:00:00 2001
From: abublihi <abublihi@gmail.com>
Date: Wed, 20 Nov 2019 14:00:20 +0300
Subject: [PATCH] Fix "Declaration of Middleware\TrustProxies::handle should be
 compatible with Fideloper\Proxy\TrustProxies::handle"

---
 app/Http/Middleware/TrustProxies.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php
index 878c2f164..7b01d0aab 100644
--- a/app/Http/Middleware/TrustProxies.php
+++ b/app/Http/Middleware/TrustProxies.php
@@ -28,7 +28,7 @@ class TrustProxies extends Middleware
      * @param Closure $next
      * @return mixed
      */
-    public function handle($request, Closure $next)
+    public function handle(Request $request, Closure $next)
     {
         $setProxies = config('app.proxies');
         if ($setProxies !== '**' && $setProxies !== '*' && $setProxies !== '') {