Skip to content

Commit

Permalink
Fixes for no_trailing_whitespace_in_comment
Browse files Browse the repository at this point in the history
I am absolutely being completely nit picky, but I am also trying to cut down on the number of files in my second commit in every project which is after running `php-cs-fixer`. As there is mixed usage in this file, I thought I would take the opportunity, as I am operating under the belief that the framework already checks for this.
  • Loading branch information
djallits committed Feb 17, 2019
1 parent 177c79a commit 9695ac5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/trustedproxy.php
Expand Up @@ -32,17 +32,17 @@

/*
* Which headers to use to detect proxy related data (For, Host, Proto, Port)
*
*
* Options include:
*
*
* - Illuminate\Http\Request::HEADER_X_FORWARDED_ALL (use all x-forwarded-* headers to establish trust)
* - Illuminate\Http\Request::HEADER_FORWARDED (use the FORWARDED header to establish trust)
* - Illuminate\Http\Request::HEADER_X_FORWARDED_AWS_ELB (If you are using AWS Elastic Load Balancer)
*
* - 'HEADER_X_FORWARDED_ALL' (use all x-forwarded-* headers to establish trust)
* - 'HEADER_FORWARDED' (use the FORWARDED header to establish trust)
* - 'HEADER_X_FORWARDED_AWS_ELB' (If you are using AWS Elastic Load Balancer)
*
*
* @link https://symfony.com/doc/current/deployment/proxies.html
*/
'headers' => Illuminate\Http\Request::HEADER_X_FORWARDED_ALL,
Expand Down

0 comments on commit 9695ac5

Please sign in to comment.