Conditions | 5 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | 3 | public function jsonSerialize(): array |
|
28 | { |
||
29 | 3 | $data = parent::jsonSerialize(); |
|
30 | |||
31 | 3 | if ($this->onLongPressStart !== null && !empty($this->onLongPressStart)) { |
|
32 | 1 | $data['onLongPressStart'] = $this->onLongPressStart; |
|
33 | } |
||
34 | |||
35 | 3 | if ($this->onLongPressEnd !== null && !empty($this->onLongPressEnd)) { |
|
36 | 1 | $data['onLongPressEnd'] = $this->onLongPressEnd; |
|
37 | } |
||
38 | |||
39 | 3 | return $data; |
|
40 | } |
||
42 |