Skip to content

Commit

Permalink
Fix bag values (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
danijelgalic committed Oct 18, 2024
1 parent 7dd97ad commit 9664e7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/support/bags/firehub.RequestHeaders.php
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,9 @@ protected function adapt ():array {
'expect' => 'HTTP_EXCEPT',
'forwarded' => 'HTTP_FORWARDED',
'from' => 'HTTP_FROM',
'if_modified_since' => 'HTTP_IF-MODIFIED-SINCE',
'if_unmodified_since' => 'HTTP_IF-UNMODIFIED-SINCE',
'if_none_match' => 'HTTP_IF-NONE-MATCH',
'if_modified_since' => 'HTTP_IF_MODIFIED_SINCE',
'if_unmodified_since' => 'HTTP_IF_UNMODIFIED_SINCE',
'if_none_match' => 'HTTP_IF_NONE_MATCH',
'permissions_policy' => 'HTTP_PERMISSIONS-POLICY',
'remote_address' => 'REMOTE_ADDR',
'remote_address_forwarded' => 'HTTP_X_FORWARDED_FOR',
Expand Down

0 comments on commit 9664e7b

Please sign in to comment.