From b780030715b4e9d67cedd230b22491b36c663bbf Mon Sep 17 00:00:00 2001 From: Ibrahim BinAlshikh Date: Sun, 26 Jun 2022 23:50:47 +0300 Subject: [PATCH] Update HttpHeader.php --- webfiori/http/HttpHeader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webfiori/http/HttpHeader.php b/webfiori/http/HttpHeader.php index cd992ef..d890483 100644 --- a/webfiori/http/HttpHeader.php +++ b/webfiori/http/HttpHeader.php @@ -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.