Conditions | 6 |
Paths | 14 |
Total Lines | 21 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 42 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
12 | public function createNodeFromValue($value, ?Document $doc = null): Node |
||
13 | { |
||
14 | try { |
||
15 | if (null !== $node = $this->createScalarOrNullNodeFromValue($value, $doc)) { |
||
16 | return $node; |
||
17 | } |
||
18 | |||
19 | if (\is_object($value)) { |
||
20 | return $this->createObjectNodeFromPropertyMap($value, $doc); |
||
21 | } |
||
22 | |||
23 | if (\is_array($value)) { |
||
24 | return $this->createArrayNodeFromPackedArray($value, $doc); |
||
25 | } |
||
26 | } catch (InvalidNodeValueException $e) { |
||
27 | throw $e; |
||
28 | } catch (\Exception $e) { |
||
29 | throw new \Error('Unexpected ' . \get_class($e) . ": {$e->getMessage()}", 0, $e); |
||
30 | } |
||
31 | |||
32 | throw new InvalidNodeValueException("Failed to create node from value of type '" . \gettype($value) . "'"); |
||
33 | } |
||
35 |