fix variable names

This commit is contained in:
ghost 2023-09-29 17:34:30 +03:00
parent 7f892b0772
commit cfc9c721ff

View File

@ -94,11 +94,11 @@ class AppModelRequest {
public function hasGet() : bool public function hasGet() : bool
{ {
return !empty($this->_post); return !empty($this->_get);
} }
public function hasFiles() : bool public function hasFiles() : bool
{ {
return !empty($this->_post); return !empty($this->_files);
} }
} }