Completed
Push — master ( c780b9...d0dcc2 )
by Andy
01:32
created

InvalidDefinitionException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Palmtree\Container\Exception;
4
5
class InvalidDefinitionException extends \Exception
6
{
7 1
    public function __construct($message = "", $code = 0, \Throwable $previous = null)
8
    {
9 1
        parent::__construct($message, $code, $previous);
10 1
    }
11
}
12