ScanResultParsingException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
4
namespace cwreden\php7ccAnalyser;
5
6
7
class ScanResultParsingException extends \Exception
8
{
9 1
    public function __construct(string $message = "")
10
    {
11 1
        parent::__construct(sprintf(
12 1
            'Parsing exception. %s',
13 1
            $message
14
        ));
15 1
    }
16
17
}