Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class SwitchParameterSetEvent extends Event |
||
15 | { |
||
16 | const PARAMETERSET = 'dol_ldap.manager.switch_parameter_set'; |
||
17 | |||
18 | private $parameterSet = []; |
||
19 | |||
20 | /** |
||
21 | * SwitchParameterSet constructor. |
||
22 | * @param array $parameterSet |
||
23 | */ |
||
24 | public function __construct(array $parameterSet) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @return array |
||
31 | */ |
||
32 | public function getParameterSet(): array |
||
38 |