Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
57 | 108 | public function __construct( |
|
58 | string $settingName, |
||
59 | SettingProvider $provider, |
||
60 | bool $isMutable, |
||
61 | $value |
||
62 | ) { |
||
63 | 108 | $this->providerName = $provider->getName(); |
|
64 | 108 | $this->isMutable = $isMutable; |
|
65 | 108 | $this->value = $value; |
|
66 | 108 | $this->settingName = $settingName; |
|
67 | 108 | } |
|
101 |