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