| 1 | <?php |
||
| 10 | class DELETE extends AbstractRequest { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @inheritdoc |
||
| 14 | */ |
||
| 15 | protected static $_TYPE = 'DELETE'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @inheritdoc |
||
| 19 | */ |
||
| 20 | protected static $_DEFAULT_HEADERS = array( |
||
| 21 | "Content-Type: application/json" |
||
| 22 | ); |
||
| 23 | |||
| 24 | /** |
||
| 25 | * JSON Encode Body |
||
| 26 | * @inheritdoc |
||
| 27 | */ |
||
| 28 | public function setBody($body){ |
||
| 31 | |||
| 32 | } |