| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | abstract class AbstractSettings implements SettingsInterface |
||
| 6 | { |
||
| 7 | 31 | public function __construct( |
|
| 8 | protected ?SettingsInterface $parent, |
||
| 9 | protected SettingsCoreInterface $settingsCore, |
||
| 10 | protected SettingsCacheInterface $settingsCache |
||
| 11 | ) { |
||
| 12 | 31 | } |
|
| 13 | |||
| 14 | public function getPath(): string |
||
| 17 | } |
||
| 18 | } |
||
| 19 |