for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Stu\Module\Config\Model;
abstract class AbstractSettings implements SettingsInterface
{
public function __construct(
protected ?SettingsInterface $parent,
protected SettingsCoreInterface $settingsCore,
protected SettingsCacheInterface $settingsCache
) {
}
public function getPath(): string
return $this->settingsCore->getPath();