Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||||
| ErrorMessage | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Exception; |
| 4 | |
| 5 | /** |
| 6 | * @author Wilhelm Zwertvaegher |
| 7 | */ |
| 8 | final readonly class ErrorMessage |
| 9 | { |
| 10 | public const string VALIDATION_FAILED = 'error.validation_failed'; |
| 11 | public const string WORD_ALREADY_EXISTS = 'error.word_already_exists'; |
| 12 | public const string WORD_NOT_FOUND = 'error.word_not_found'; |
| 13 | public const string NICK_NOT_FOUND = 'error.nick_not_found'; |
| 14 | public const string NOTIFICATION_NOT_FOUND = 'error.notification_not_found'; |
| 15 | public const string NO_SUBJECT_FOUND = 'error.no_subject_found'; |
| 16 | public const string NO_QUALIFIER_FOUND = 'error.no_qualifier_found'; |
| 17 | } |