| 1 | <?php |
||
| 10 | class PowerOn extends Action |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Action parameter |
||
| 14 | * |
||
| 15 | * @const ACTION |
||
| 16 | */ |
||
| 17 | const ACTION = 'power_on'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Action HTTP Method |
||
| 21 | * |
||
| 22 | * @const method |
||
| 23 | */ |
||
| 24 | const METHOD = 'POST'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Return the body of the request |
||
| 28 | * |
||
| 29 | * @return string json representation of the body |
||
| 30 | */ |
||
| 31 | public function getBody() |
||
| 37 | } |
||
| 38 |