Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Aug 21, 2016
1 parent d66011d commit b096005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Network/CakeRequest.php
Expand Up @@ -748,7 +748,7 @@ public function here($base = true) {
* @return mixed Either false on no header being set or the value of the header.
*/
public static function header($name) {
$httpName = 'HTTP_' . strtoupper(str_replace('-', '_', $name)); ;
$httpName = 'HTTP_' . strtoupper(str_replace('-', '_', $name));
if (isset($_SERVER[$httpName])) {
return $_SERVER[$httpName];
}
Expand Down

0 comments on commit b096005

Please sign in to comment.