Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class GroupUserEvent extends GroupEntityEvent |
||
20 | { |
||
21 | /** |
||
22 | * @var \Zikula\UsersModule\Entity\UserEntity |
||
23 | */ |
||
24 | private $user; |
||
25 | |||
26 | public function __construct(GroupEntity $groupEntity, UserEntity $userEntity) |
||
27 | { |
||
28 | parent::__construct($groupEntity); |
||
29 | $this->user = $userEntity; |
||
30 | } |
||
31 | |||
32 | public function getUser(): UserEntity |
||
35 | } |
||
36 | } |
||
37 |