| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1.0787 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | 4 | public function format(Item $item): string |
|
| 46 | { |
||
| 47 | 4 | $message = $this->interpolate( |
|
| 48 | 4 | $item->getMessage(), |
|
| 49 | 4 | $item->getContext() |
|
| 50 | ); |
||
| 51 | |||
| 52 | 4 | return JsonHelper::encode( |
|
| 53 | [ |
||
| 54 | 4 | "type" => $item->getName(), |
|
| 55 | 4 | "message" => $message, |
|
| 56 | 4 | "timestamp" => $this->getFormattedDate(), |
|
| 57 | ] |
||
| 58 | ); |
||
| 59 | } |
||
| 60 | } |
||
| 61 |