| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 15 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 3 | public static function getAllEventTypes(): array |
|
| 28 | { |
||
| 29 | 3 | return [ |
|
| 30 | 3 | self::ANIMATION_FINISH, |
|
| 31 | 3 | self::CLICK, |
|
| 32 | 3 | self::COLLAPSE, |
|
| 33 | 3 | self::ERROR, |
|
| 34 | 3 | self::ON_MOUSE_OUT, |
|
| 35 | 3 | self::ON_MOUSE_OVER, |
|
| 36 | 3 | self::PAGE, |
|
| 37 | 3 | self::RANGE_CHANGE, |
|
| 38 | 3 | self::READY, |
|
| 39 | 3 | self::REGION_CLICK, |
|
| 40 | 3 | self::ROLLUP, |
|
| 41 | 3 | self::SELECT, |
|
| 42 | 3 | self::SORT, |
|
| 43 | 3 | ]; |
|
| 46 |