| 1 | <?php declare (strict_types=1); |
||
| 20 | class Constant |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Events |
||
| 24 | */ |
||
| 25 | const EVENT_INSERT = 'EVENT: INSERT DML EVENT'; |
||
| 26 | const EVENT_SELECT = 'EVENT: SELECT DML EVENT'; |
||
| 27 | const EVENT_UPDATE = 'EVENT: UPDATE DML EVENT'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @author Lucky Bardeson |
||
| 31 | */ |
||
| 32 | const EVENT_DELETE = 'EVENT: DELETE DML EVENT'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Error Numbers |
||
| 36 | */ |
||
| 37 | const ERROR_401 = 'ERROR_401: Resource Inaccessible'; |
||
| 38 | const ERROR_402 = 'ERROR_402: Resource Requirements Not Met'; |
||
| 39 | const ERROR_403 = 'ERROR_403: Resource Not Writable'; |
||
| 40 | const ERROR_404 = 'ERROR_404: Resource Not Found'; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Error Severities |
||
| 44 | */ |
||
| 45 | const ERROR_HIGH = 'ERROR_SEVERITY: HIGH'; |
||
| 46 | const ERROR_LOW = 'ERROR_SEVERITY: LOW'; |
||
| 47 | const ERROR_NORMAL = 'ERROR_SEVERITY: NORMAL'; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * |
||
| 51 | */ |
||
| 52 | const UNDEFINED = 0; |
||
| 53 | |||
| 54 | public static function getGlobals($config = "configs") { |
||
| 68 | } |
||
| 69 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.