Conditions | 7 |
Paths | 15 |
Total Lines | 27 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 10.5454 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
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 | } |
||
41 |