fix variable name

This commit is contained in:
ghost 2023-09-26 22:41:16 +03:00
parent 00c39f49c1
commit 44e37cfbe6

View File

@ -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