diff --git a/HttpServer/Http/Formatter/HtmlFormatter.php b/HttpServer/Http/Formatter/HtmlFormatter.php index 58a8b8e4..a3755d04 100644 --- a/HttpServer/Http/Formatter/HtmlFormatter.php +++ b/HttpServer/Http/Formatter/HtmlFormatter.php @@ -24,9 +24,9 @@ class HtmlFormatter extends Application implements IFormatter public $data; /** @var Response */ - public $status; + public Response $status; - public $header = []; + public array $header = []; /** * @param $data diff --git a/System/Core/JSON.php b/System/Core/JSON.php index 3e641318..34e01e24 100644 --- a/System/Core/JSON.php +++ b/System/Core/JSON.php @@ -6,7 +6,7 @@ * Time: 01:04 */ -declare(strict_types=1); +//declare(strict_types=1); namespace Snowflake\Core;