Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | abstract class AccountChange extends Endpoint |
||
17 | { |
||
18 | /** |
||
19 | * `CodeEtat` output argument could have the following values : |
||
20 | * |
||
21 | * @var int |
||
22 | * @see https://github.com/NextINpact/LaPresseLibreSDK/wiki/Fonctionnement-des-web-services#param%C3%A8tres-de-sortie-1 |
||
23 | */ |
||
24 | const SUCCESS = 1; |
||
25 | const FAILED_EXISTING_EMAIL = 2; |
||
26 | const FAILED_EXISTING_USERNAME = 3; |
||
27 | const FAILED = 4; |
||
28 | |||
29 | public static function allStates() |
||
39 |