| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 4 | trait ConfigTrait |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * 配置信息 |
||
| 9 | * |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | protected $config; |
||
| 13 | |||
| 14 | public function applyConfig(array $config) |
||
| 19 | } |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getConfig(string $name) |
||
| 26 | } |
||
| 27 | |||
| 28 | abstract public function getDefaultConfig():array; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function getDefaultConfig(): array |
||
| 46 |