Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class DeleteSettingsHandler implements CommandHandlerProtocol |
||
21 | { |
||
22 | private SettingsRepositoryProtocol $repository; |
||
23 | |||
24 | public function __construct(SettingsRepositoryProtocol $repository) |
||
25 | { |
||
26 | $this->repository = $repository; |
||
27 | } |
||
28 | |||
29 | public function __invoke(DeleteSettings $command): void |
||
37 | } |
||
38 | } |
||
39 |