Completed
Push — master ( df57bf...0736f1 )
by Pol
09:33
created

ParseErrorObject   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace drupol\valuewrapper\Object\Exception;
6
7
/**
8
 * Class ParseErrorObject
9
 */
10
class ParseErrorObject extends AbstractExceptionObject
11
{
12
    /**
13
     * ParseErrorObject constructor.
14
     *
15
     * @param \ParseError $value
16
     */
17 4
    public function __construct(\ParseError $value)
18
    {
19 4
        parent::__construct($value);
20 4
    }
21
}
22