| Total Complexity | 1 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class PasswordReset extends Action |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Action parameter |
||
| 14 | * |
||
| 15 | * @const ACTION |
||
| 16 | */ |
||
| 17 | const ACTION = 'password_reset'; |
||
| 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 | 1 | public function getBody() |
|
| 39 |