作者 karlet

feat:fix bug

... ... @@ -16,8 +16,8 @@ class SimpleRequest
{
$this->path = $data['path'];
$this->uri = $data['uri'];
$this->get = $data['get'];
$this->post = $data['post'];
$this->get = $data['get']??[];
$this->post = $data['post']??[];
$this->method = $data['method'];
$this->header = $data['header'];
$this->cookie = $data['cookie'];
... ...