| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class UserService |
||
| 13 | { |
||
| 14 | use CommandInstanceTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param User $user |
||
| 18 | * @return UserDTO |
||
| 19 | */ |
||
| 20 | public function fillUserDTO(User $user): UserDTO |
||
| 29 | ); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param UserDTO $userDTO |
||
| 34 | * @return CreateUserCommand|UpdateUserCommand |
||
| 35 | */ |
||
| 36 | public function getCommand(UserDTO $userDTO): CommandInterface |
||
| 48 | } |