Completed
Pull Request — master (#2)
by Pol
10:56
created

ParseErrorObject::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
nc 1
cc 1
nop 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
    public function __construct(\ParseError $value)
18
    {
19
        parent::__construct($value);
20
    }
21
}
22