Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
19 | class ExceptionBoundary |
||
20 | { |
||
21 | public const EXPIRE_MIN = 0; |
||
22 | public const EXPIRE_MAX = 86400; |
||
23 | |||
24 | public const STORAGE_SIZE_MIN = 2; |
||
25 | public const STORAGE_SIZE_MAX = 64; |
||
26 | |||
27 | public const TOKEN_LENGHT_MIN = 16; |
||
28 | public const TOKEN_LENGHT_MAX = 128; |
||
29 | |||
30 | /** |
||
31 | * Class constructor. |
||
32 | * Private because this class must no have instances. |
||
33 | * Private make impossible to create instance with the new keyword. |
||
34 | */ |
||
35 | private function __construct() |
||
39 |