Skip to content

Commit 6bbb0d7

Browse files
committed
Fix space pb (Http::header)
1 parent f09a5a5 commit 6bbb0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Ubiquity/utils/http/foundation/WorkermanHttp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function header($key, $value, bool $replace = true, int $http_response_co
3535
if ($http_response_code != null) {
3636
$this->responseCode = $http_response_code;
3737
}
38-
Http::header($key.' :'.$value,$replace,$http_response_code);
38+
Http::header($key.':'.$value,$replace,$http_response_code);
3939
}
4040

4141
/**

0 commit comments

Comments
 (0)