| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function buildMethod(Query $query) |
||
| 26 | { |
||
| 27 | static $defaultMethods = [ |
||
| 28 | 'get' => 'GET', |
||
| 29 | 'put' => 'PUT', |
||
| 30 | 'head' => 'HEAD', |
||
| 31 | 'post' => 'GET', |
||
| 32 | 'search' => 'GET', |
||
| 33 | 'insert' => 'POST', |
||
| 34 | 'update' => 'PUT', |
||
| 35 | 'delete' => 'DELETE', |
||
| 36 | ]; |
||
| 37 | |||
| 38 | return isset($defaultMethods[$query->action]) ? $defaultMethods[$query->action] : 'POST'; |
||
| 39 | } |
||
| 40 | |||
| 71 |