execute(); $writer = new DocxWriter($storage, 'contracts/test-write.docx'); $writer->execute($result); } /** @test */ public function it_recreates_original_document_from_json() { $data = Storage::disk('local')->get('contracts/x.json'); $data = json_decode($data, true); $recreateDocument = new RecreateDocument('test123', $data); $recreateDocument->handle(); } }