Browse Source

fix variable names

main
ghost 1 year ago
parent
commit
cfc9c721ff
  1. 4
      src/app/model/request.php

4
src/app/model/request.php

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

Loading…
Cancel
Save