| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace common\interfaces;
- /**
- * 插件模块设置接口
- *
- * Interface AdsSettingInterface
- * @package common\interfaces
- */
- interface AdsSettingInterface
- {
- /**
- * 默认设置
- * ['foo' => 'boo']
- *
- * @return array
- */
- public function defaultSetting() : array;
- /**
- * 返回插件名称
- *
- * @return string
- */
- public function getAddosName() : string;
- }
|