@@ -10,17 +10,17 @@ discard block |
||
10 | 10 | class ContractService |
11 | 11 | { |
12 | 12 | |
13 | - public function __construct( |
|
13 | + public function __construct( |
|
14 | 14 | private EntityManagerInterface $manager, |
15 | 15 | private PdfService $pdf, |
16 | 16 | private ModelService $modelService |
17 | - ) {} |
|
17 | + ) {} |
|
18 | 18 | |
19 | - public function genetateFromModel(Contract $data) |
|
20 | - { |
|
19 | + public function genetateFromModel(Contract $data) |
|
20 | + { |
|
21 | 21 | $file = $data->getContractFile(); |
22 | 22 | if (!$file) |
23 | - $file = new File(); |
|
23 | + $file = new File(); |
|
24 | 24 | |
25 | 25 | $file->setFileType('text'); |
26 | 26 | $file->setExtension('html'); |
@@ -29,23 +29,23 @@ discard block |
||
29 | 29 | $this->manager->flush(); |
30 | 30 | |
31 | 31 | return $data; |
32 | - } |
|
32 | + } |
|
33 | 33 | |
34 | - public function getContractPDFContent(Contract $contract): string |
|
35 | - { |
|
34 | + public function getContractPDFContent(Contract $contract): string |
|
35 | + { |
|
36 | 36 | $content = $contract->getContractFile()->getContent(); |
37 | 37 | |
38 | 38 | if ($contract->getContractFile()->getExtension() == 'pdf') |
39 | - return $content; |
|
39 | + return $content; |
|
40 | 40 | |
41 | 41 | if (empty($content)) { |
42 | - throw new \Exception( |
|
42 | + throw new \Exception( |
|
43 | 43 | sprintf('Houve um erro ao gerar o PDF') |
44 | - ); |
|
44 | + ); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | return $this->pdf->convertHtmlToPdf($content); |
48 | - } |
|
48 | + } |
|
49 | 49 | |
50 | 50 | |
51 | 51 |