| Total Complexity | 2 | 
| Total Lines | 16 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 21 | final class EditUserHandler implements CommandHandlerInterface  | 
            ||
| 22 | { | 
            ||
| 23 | private SaveUser $saveUser;  | 
            ||
| 24 | private CreateUserFactory $createUser;  | 
            ||
| 25 | |||
| 26 | public function __construct(  | 
            ||
| 27 | SaveUser $saveUser,  | 
            ||
| 28 | CreateUserFactory $createUser  | 
            ||
| 29 |     ) { | 
            ||
| 30 | $this->saveUser = $saveUser;  | 
            ||
| 31 | $this->createUser = $createUser;  | 
            ||
| 32 | }  | 
            ||
| 33 | |||
| 34 | public function __invoke(EditUserCommand $command): void  | 
            ||
| 37 | }  | 
            ||
| 38 | }  | 
            ||
| 39 |