Browse Source

Fix type hint for case of trusting all proxies (string) (#5025)

Matt Hanley 5 years ago
parent
commit
f8e455e358
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Middleware/TrustProxies.php

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

@@ -10,7 +10,7 @@ class TrustProxies extends Middleware
     /**
      * The trusted proxies for this application.
      *
-     * @var array
+     * @var array|string
      */
     protected $proxies;