Passed
Push — master ( ef5814...749211 )
by Dominique
01:31
created

EndBeforeStartException

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 11
c 0
b 0
f 0
wmc 0
1
<?php
2
declare(strict_types=1);
3
namespace Kreemers\Period\Exception;
4
5
use Exception;
6
7
class EndBeforeStartException extends Exception
8
{
9
    /**
10
     * @var string
11
     */
12
    protected $message = 'Start must be before end';
13
14
    /**
15
     * @var int
16
     */
17
    protected $code = 1555929112;
18
}
19