Browse Source

Request::HEADER_X_FORWARDED_ALL is an integer

it is int(30)
Viktor Szépe 6 years ago
parent
commit
20b9daa8f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Middleware/TrustProxies.php

+ 1 - 1
app/Http/Middleware/TrustProxies.php

@@ -17,7 +17,7 @@ class TrustProxies extends Middleware
     /**
      * The headers that should be used to detect proxies.
      *
-     * @var string
+     * @var integer
      */
     protected $headers = Request::HEADER_X_FORWARDED_ALL;
 }