| Total Complexity | 7 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class NodeValueFactory implements NodeValueFactoryInterface |
||
| 16 | { |
||
| 17 | |||
| 18 | public static function create(): NodeValueFactoryInterface |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritDoc} |
||
| 25 | * |
||
| 26 | * @param array|bool|float|int|stdClass|string|null $data |
||
| 27 | * @param PathInterface|null $path |
||
| 28 | * @return NodeValueInterface |
||
| 29 | */ |
||
| 30 | public function createValue($data, ?PathInterface $path = null): NodeValueInterface |
||
| 50 |