| 1 | <?php |
||
| 10 | class SettingApplication implements SectionBagInterface |
||
| 11 | { |
||
| 12 | private $settingRepository; |
||
| 13 | |||
| 14 | 7 | public function __construct(SettingRepositoryInterface $settingRepository) |
|
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | 6 | public function get($settingKey, $defaultValue = null) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function section($name) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | 2 | public function set($keyName, $valueString) |
|
| 45 | } |
||
| 46 |