| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class NestedAccessorFactory implements NestedAccessorFactoryInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @inheritDoc |
||
| 17 | */ |
||
| 18 | public static function create(&$source, string $pathDelimiter = '.'): NestedAccessorInterface |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @inheritDoc |
||
| 25 | */ |
||
| 26 | public static function fromArray(array &$source, string $pathDelimiter = '.'): NestedAccessorInterface |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritDoc |
||
| 33 | */ |
||
| 34 | public static function fromObject(object &$source, string $pathDelimiter = '.'): NestedAccessorInterface |
||
| 39 |