diff --git a/flight/net/Request.php b/flight/net/Request.php index 1cc09f3..19a8331 100644 --- a/flight/net/Request.php +++ b/flight/net/Request.php @@ -211,7 +211,7 @@ class Request { $method = self::getMethod(); - if ($method == 'POST' || $method == 'PUT' || $method == 'PATCH') { + if ($method == 'POST' || $method == 'PUT' || $method == 'DELETE' || $method == 'PATCH') { $body = file_get_contents('php://input'); }