We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916c014 commit b0726eeCopy full SHA for b0726ee
classes/Mvc/Request.php
@@ -10,7 +10,11 @@ class Request {
10
'get' => ['default' => 'get', 'fallback' => 'post'],
11
'post' => ['default' => 'post', 'fallback' => 'get'],
12
'head' => ['default' => 'get', 'fallback' => 'post'],
13
- 'cli' => ['default' => 'cli'],
+ 'cli' => ['default' => 'body'],
14
+ 'put' => ['default' => 'body'],
15
+ 'delete' => ['default' => 'body'],
16
+ 'patch' => ['default' => 'body'],
17
+ 'options' => ['default' => 'body'],
18
];
19
20
/**
0 commit comments