Total Complexity | 1 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class EventType |
||
9 | { |
||
10 | public const ANIMATION_FINISH = 'animationfinish'; |
||
11 | public const CLICK = 'click'; |
||
12 | public const COLLAPSE = 'collapse'; |
||
13 | public const ERROR = 'error'; |
||
14 | public const ON_MOUSE_OUT = 'onmouseout'; |
||
15 | public const ON_MOUSE_OVER = 'onmouseover'; |
||
16 | public const PAGE = 'page'; |
||
17 | public const RANGE_CHANGE = 'rangechange'; |
||
18 | public const READY = 'ready'; |
||
19 | public const REGION_CLICK = 'regionClick'; |
||
20 | public const ROLLUP = 'rollup'; |
||
21 | public const SELECT = 'select'; |
||
22 | public const SORT = 'sort'; |
||
23 | |||
24 | /** |
||
25 | * @return string[] |
||
26 | */ |
||
27 | 3 | public static function getAllEventTypes(): array |
|
46 |