Completed
Push — master ( 9afc27...035c9e )
by Chris
04:26
created

SafeNodeFactory   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Test Coverage

Coverage 58.33%

Importance

Changes 0
Metric Value
wmc 7
dl 0
loc 32
ccs 7
cts 12
cp 0.5833
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
C createNodeFromValue() 0 27 7
1
<?php declare(strict_types=1);
2
3
namespace DaveRandom\Jom;
4
5
use DaveRandom\Jom\Exceptions\InvalidNodeValueException;
6
7
final class SafeNodeFactory extends NodeFactory
8
{
9
    /**
10
     * @inheritdoc
11
     */
12 64
    public function createNodeFromValue($value, ?Document $doc, int $flags): ?Node
13
    {
14
        try {
15 64
            if (null !== $node = $this->createScalarOrNullNodeFromValue($value, $doc)) {
16 64
                return $node;
17
            }
18
19 64
            if (\is_object($value)) {
20 64
                return $this->createObjectNodeFromPropertyMap($value, $doc, $flags);
21
            }
22
23 64
            if (\is_array($value)) {
24 64
                return $this->createArrayNodeFromPackedArray($value, $doc, $flags);
25
            }
26
27
            if ($flags & Node::IGNORE_INVALID_VALUES) {
28
                return null;
29
            }
30
        } catch (InvalidNodeValueException $e) {
31
            throw $e;
32
        //@codeCoverageIgnoreStart
33
        } catch (\Exception $e) {
34
            throw unexpected($e);
35
        }
36
        //@codeCoverageIgnoreEnd
37
38
        throw new InvalidNodeValueException("Failed to create node from value of type '" . \gettype($value) . "'");
39
    }
40
}
41