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
1<?php
2
3namespace App\Shared\Domain\Exception;
4
5/**
6 * @author Wilhelm Zwertvaegher
7 */
8interface BaseErrorCode
9{
10    public function getMessage(): string;
11
12    public function getCode(): string;
13}