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
ErrorCode
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace App\Exception;
4
5/**
6 * @author Wilhelm Zwertvaegher
7 */
8enum ErrorCode: string
9{
10    case INTERNAL = 'INTERNAL_ERROR';
11    case ENTITY_EXISTS = 'ENTITY_EXISTS';
12    case ENTITY_NOT_FOUND = 'ENTITY_NOT_FOUND';
13    case VALIDATION_ERROR = 'VALIDATION_ERROR';
14}