AdsSettingInterface.php 424 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace common\interfaces;
  3. /**
  4. * 插件模块设置接口
  5. *
  6. * Interface AdsSettingInterface
  7. * @package common\interfaces
  8. */
  9. interface AdsSettingInterface
  10. {
  11. /**
  12. * 默认设置
  13. * ['foo' => 'boo']
  14. *
  15. * @return array
  16. */
  17. public function defaultSetting() : array;
  18. /**
  19. * 返回插件名称
  20. *
  21. * @return string
  22. */
  23. public function getAddosName() : string;
  24. }