Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | final class RemoveRoleFromGroupCommandHandler |
||
9 | { |
||
10 | private $roleRepository; |
||
11 | private $groupRepository; |
||
12 | |||
13 | public function __construct(RoleRepository $role, GroupRepository $group) |
||
14 | { |
||
15 | $this->roleRepository = $role; |
||
16 | $this->groupRepository = $group; |
||
17 | } |
||
18 | |||
19 | public function handle(RemoveRoleFromGroupCommand $command) |
||
27 | } |
||
28 | } |
||
29 |