1 | <?php |
||
7 | class SettingValueChooser |
||
|
|||
8 | { |
||
9 | private $value; |
||
10 | |||
11 | 6 | public static function choose(Setting $setting = null, $default = null) |
|
12 | { |
||
13 | 6 | return new SettingValueChooser($setting, $default); |
|
14 | } |
||
15 | |||
16 | 6 | private function __construct(Setting $setting = null, $default = null) |
|
17 | { |
||
18 | 6 | $this->value = $setting ? $setting->value() : $default; |
|
19 | 6 | } |
|
20 | |||
21 | 6 | public function value() |
|
25 | } |
||
26 |