Passed
Push — master ( 871595...3b7c18 )
by Luiz Kim
06:33 queued 04:22
created
src/Service/ContractPeopleService.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
 class ContractPeopleService
12 12
 {
13 13
 
14
-  public function __construct(
14
+    public function __construct(
15 15
     private EntityManagerInterface $manager,
16 16
     private ContractService $contractService
17
-  ) {}
17
+    ) {}
18 18
 
19
-  public function afterPersist(ContractPeople $contractPeople)
20
-  {
19
+    public function afterPersist(ContractPeople $contractPeople)
20
+    {
21 21
     $contract = $contractPeople->getContract();
22 22
     $this->contractService->genetateFromModel($contract);
23 23
     return  $contractPeople;
24
-  }
24
+    }
25 25
 }
Please login to merge, or discard this patch.
src/Service/ContractService.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -11,17 +11,17 @@  discard block
 block discarded – undo
11 11
 class ContractService
12 12
 {
13 13
 
14
-  public function __construct(
14
+    public function __construct(
15 15
     private EntityManagerInterface $manager,
16 16
     private PdfService $pdf,
17 17
     private ModelService $modelService
18
-  ) {}
18
+    ) {}
19 19
 
20
-  public function genetateFromModel(Contract $data)
21
-  {
20
+    public function genetateFromModel(Contract $data)
21
+    {
22 22
     $file = $data->getContractFile();
23 23
     if (!$file)
24
-      $file = new File();
24
+        $file = new File();
25 25
 
26 26
     $file->setFileType('text');
27 27
     $file->setExtension('html');
@@ -33,35 +33,35 @@  discard block
 block discarded – undo
33 33
 
34 34
     $data->setContractFile($file);
35 35
     $data->setStatus($this->manager->getRepository(Status::class)->findOneBy([
36
-      'realStatus' => 'open',
37
-      'context' => $data->getStatus()->getContext()
36
+        'realStatus' => 'open',
37
+        'context' => $data->getStatus()->getContext()
38 38
     ]));
39 39
     $this->manager->persist($data);
40 40
     $this->manager->flush();
41 41
 
42 42
     return $data;
43
-  }
43
+    }
44 44
 
45
-  public function getContractPDFContent(Contract $contract): string
46
-  {
45
+    public function getContractPDFContent(Contract $contract): string
46
+    {
47 47
     $content = $contract->getContractFile()->getContent();
48 48
 
49 49
     if ($contract->getContractFile()->getExtension() == 'pdf')
50
-      return $content;
50
+        return $content;
51 51
 
52 52
     if (empty($content)) {
53
-      throw new \Exception(
53
+        throw new \Exception(
54 54
         sprintf('Houve um erro ao gerar o PDF')
55
-      );
55
+        );
56 56
     }
57 57
 
58 58
     return $this->pdf->convertHtmlToPdf($content);
59
-  }
59
+    }
60 60
 
61 61
 
62
-  public function afterPersist(Contract $contract)
63
-  {
62
+    public function afterPersist(Contract $contract)
63
+    {
64 64
     if ($contract->getStatus()->getRealStatus() == 'open')
65
-      return  $this->genetateFromModel($contract);
66
-  }
65
+        return  $this->genetateFromModel($contract);
66
+    }
67 67
 }
Please login to merge, or discard this patch.