Total Complexity | 12 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class Codes |
||
8 | { |
||
9 | public const OK = 0; |
||
10 | public const INI_SIZE = 1; |
||
11 | public const FORM_SIZE = 2; |
||
12 | public const PARTIAL = 3; |
||
13 | public const NO_FILE = 4; |
||
14 | public const NO_TMP_DIR = 6; |
||
15 | public const CANT_WRITE = 7; |
||
16 | public const EXTENSION = 8; |
||
17 | |||
18 | /* custom codes */ |
||
19 | public const TYPE_NOT_ALLOWED = 91; |
||
20 | public const IMAGE_TOO_SMALL = 101; |
||
21 | public const IMAGE_WRONG_ASPECT_RATIO = 102; |
||
22 | |||
23 | public static function getMessage(int $errorCode): string |
||
50 |