diff --git a/src/Libs/Router.php b/src/Libs/Router.php index a4697ab..8bbde5f 100644 --- a/src/Libs/Router.php +++ b/src/Libs/Router.php @@ -165,7 +165,7 @@ class Router { private static function get_json(): object { $contentType = isset($_SERVER["CONTENT_TYPE"]) ? trim($_SERVER["CONTENT_TYPE"]) : ''; if ($contentType === "application/json") { - return json_decode(trim(file_get_contents("php://input"))); + return (object) json_decode(trim(file_get_contents("php://input"))); } return (object) ''; }