Skip to content

Commit

Permalink
Merge pull request #139 from kivudesign/version_boss
Browse files Browse the repository at this point in the history
[FIX] Request Input:call to undefined method _input.
  • Loading branch information
bim-g committed Sep 17, 2023
2 parents 01c3bb1 + 4bc0b75 commit f1f2282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static function exists($type = "POST")
{
switch ($type) {
case "POST":
return !empty($_POST) || self::_put() || !empty($_FILES);
return !empty($_POST) || self::put() || !empty($_FILES);
default:
return false;
}
Expand Down

0 comments on commit f1f2282

Please sign in to comment.