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