Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class ConfigureSettingsHandler implements CommandHandlerInterface |
||
22 | { |
||
23 | private SaveSettings $saveSettings; |
||
24 | private CreateSettings $createSettings; |
||
25 | |||
26 | public function __construct(SaveSettings $saveSettings, CreateSettings $createSettings) |
||
27 | { |
||
28 | $this->saveSettings = $saveSettings; |
||
29 | $this->createSettings = $createSettings; |
||
30 | } |
||
31 | |||
32 | public function __invoke(ConfigureSettings $command): void |
||
36 | ); |
||
37 | } |
||
39 |