You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
481B

  1. <?php
  2. namespace common\logic\Setting;
  3. use common\logic\AbstractChecker;
  4. class SettingBag extends AbstractChecker
  5. {
  6. // $settingModule->getSettingBag()->getSetting(AdminSettingDefinition::SETTING_ADMINISTRATOR_EMAIL);
  7. // $settingModule->getSettingBag()->get('administratorEmail');
  8. // $settingModule->getProducerSettingBag()->get('isTest');
  9. public function getSetting(string $name)
  10. {
  11. }
  12. public function setSetting(string $name, $values)
  13. {
  14. }
  15. }