diff options
Diffstat (limited to 'src/ErrorCode.php')
-rw-r--r-- | src/ErrorCode.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ErrorCode.php b/src/ErrorCode.php new file mode 100644 index 0000000..048ef34 --- /dev/null +++ b/src/ErrorCode.php @@ -0,0 +1,11 @@ +<?php + +namespace App; + +enum ErrorCode: string +{ + case FORBIDDEN = "M_FORBIDDEN"; + case UNKNOWN_TOKEN = "M_UNKNOWN_TOKEN"; + + case UNKNOWN = "M_UNKNOWN"; +} |