Skip to content

Commit

Permalink
Update HttpHeader.php
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Jun 26, 2022
1 parent 3899c23 commit b780030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webfiori/http/HttpHeader.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct(string $name = '', string $value = '') {
* by a colon (":") and the header value.
*/
public function __toString() {
return $this->getName().' :'.$this->getValue();
return $this->getName().': '.$this->getValue();
}
/**
* Returns a string that represents the name of the header.
Expand Down

0 comments on commit b780030

Please sign in to comment.