From 44e37cfbe615d5d360df8ad1b087fe3bf4dd5293 Mon Sep 17 00:00:00 2001 From: ghost Date: Tue, 26 Sep 2023 22:41:16 +0300 Subject: [PATCH] fix variable name --- src/app/model/request.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/model/request.php b/src/app/model/request.php index e5d7bc1..0362a6f 100644 --- a/src/app/model/request.php +++ b/src/app/model/request.php @@ -8,9 +8,9 @@ class AppModelRequest { public function __construct(array $get, array $post, array $files) { - $this->_address = $address; - $this->_post = $post; - $this->_files = $files; + $this->_get = $get; + $this->_post = $post; + $this->_files = $files; } public function get(string $key) : mixed