Skip to content

Commit 7e5c066

Browse files
committed
fix: error on json_decode
1 parent d0d724f commit 7e5c066

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Export/PdfReportWriter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function __construct(
1919
*/
2020
public function generate(Validation $validation): string
2121
{
22-
$entries = json_decode($validation->getResults());
22+
$entries = $validation->getResults();
2323

2424
$hasErrors = (bool) array_filter(
2525
$entries,

0 commit comments

Comments
 (0)