Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | class ImmutableSettingOverrideException extends LogicException implements SettingException |
||
33 | { |
||
34 | /** |
||
35 | * @param string $settingName |
||
36 | * @param string $provider |
||
37 | * @param string $originalProvider |
||
38 | * @param Throwable|null $prior |
||
39 | * @return ImmutableSettingOverrideException |
||
40 | */ |
||
41 | 3 | public static function build( |
|
58 |