Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class SaveSettings implements SaveSettingsInterface |
||
21 | { |
||
22 | private UpdateSettings $updateSettings; |
||
23 | private CreateSettings $createSettings; |
||
24 | |||
25 | public function __construct( |
||
26 | UpdateSettings $updateSettings, |
||
27 | CreateSettings $createSettings |
||
28 | ) { |
||
29 | $this->updateSettings = $updateSettings; |
||
30 | $this->createSettings = $createSettings; |
||
31 | } |
||
32 | |||
33 | public function save(Settings $settings): void |
||
39 | } |
||
40 | } |
||
42 |