| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 30 | 7 | public function jsonSerialize(): array |
|
| 31 | { |
||
| 32 | 7 | $out = $this->properties; |
|
| 33 | 7 | if ($this->when !== null && $this->when !== '') { |
|
| 34 | // Ensure 'when' appears first for readability (JSON object order not semantically relevant). |
||
| 35 | 3 | $out = ['when' => $this->when] + $out; |
|
| 36 | } |
||
| 37 | |||
| 38 | 7 | return $out; |
|
| 39 | } |
||
| 41 |