1 | <?php |
||
9 | abstract class BaseConfig |
||
10 | { |
||
11 | /** |
||
12 | * @throws InvalidConfig |
||
13 | */ |
||
14 | 16 | final protected static function filter(array $config): array |
|
22 | |||
23 | protected static function defaults(): array |
||
27 | |||
28 | /** |
||
29 | * @throws InvalidConfig |
||
30 | */ |
||
31 | abstract protected static function validate(array $config): void; |
||
32 | } |
||
33 |