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 | } |
Below are the source code lines that represent each code branch as identified by Xdebug. Please note a branch is not
necessarily coterminous with a line, a line may contain multiple branches and therefore show up more than once.
Please also be aware that some branches may be implicit rather than explicit, e.g. an if statement
always has an else as part of its logical flow even if you didn't write one.