Passed
Push — master ( 246377...a66ce3 )
by Luiz Kim
09:50 queued 07:43
created
src/Service/ContractService.php 2 patches
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,8 +30,9 @@  discard block
 block discarded – undo
30 30
   public function genetateFromModel(Contract $data)
31 31
   {
32 32
     $file = $data->getContractFile();
33
-    if (!$file)
34
-      $file = new File();
33
+    if (!$file) {
34
+          $file = new File();
35
+    }
35 36
 
36 37
     $file->setFileType('text');
37 38
     $file->setExtension('html');
@@ -47,8 +48,9 @@  discard block
 block discarded – undo
47 48
   {
48 49
     $content = $contract->getContractFile()->getContent();
49 50
 
50
-    if ($contract->getContractFile()->getExtension() == 'pdf')
51
-      return $content;
51
+    if ($contract->getContractFile()->getExtension() == 'pdf') {
52
+          return $content;
53
+    }
52 54
 
53 55
     if (empty($content)) {
54 56
       throw new \Exception(
Please login to merge, or discard this patch.
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -10,17 +10,17 @@  discard block
 block discarded – undo
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');
@@ -35,27 +35,27 @@  discard block
 block discarded – undo
35 35
     $this->manager->flush();
36 36
 
37 37
     return $data;
38
-  }
38
+    }
39 39
 
40
-  public function getContractPDFContent(Contract $contract): string
41
-  {
40
+    public function getContractPDFContent(Contract $contract): string
41
+    {
42 42
     $content = $contract->getContractFile()->getContent();
43 43
 
44 44
     if ($contract->getContractFile()->getExtension() == 'pdf')
45
-      return $content;
45
+        return $content;
46 46
 
47 47
     if (empty($content)) {
48
-      throw new \Exception(
48
+        throw new \Exception(
49 49
         sprintf('Houve um erro ao gerar o PDF')
50
-      );
50
+        );
51 51
     }
52 52
 
53 53
     return $this->pdf->convertHtmlToPdf($content);
54
-  }
54
+    }
55 55
 
56 56
 
57
-  public function afterPersist(Contract $contract)
58
-  {
57
+    public function afterPersist(Contract $contract)
58
+    {
59 59
     return  $this->genetateFromModel($contract);
60
-  }
60
+    }
61 61
 }
Please login to merge, or discard this patch.
src/Service/SignatureService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 
147 147
 
148 148
         $contractProviders = $contract->getContractPeople()
149
-            ->filter(function ($contractPeople) {
149
+            ->filter(function($contractPeople) {
150 150
                 return $contractPeople->getPeopleType() == 'Provider';
151 151
             });
152 152
         if ($contractProviders->isEmpty()) {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         // add the rest
163 163
 
164 164
         $contractParticipants = $contract->getContractPeople()
165
-            ->filter(function ($contractPeople) {
165
+            ->filter(function($contractPeople) {
166 166
                 return $contractPeople->getPeopleType() != 'Provider';
167 167
             });
168 168
         if ($contractParticipants->isEmpty()) {
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     protected function getContractContractorSignerName(ContractEntity $contract): string
182 182
     {
183 183
         $contractPayers = $contract->getContractPeople()
184
-            ->filter(function ($contractPeople) {
184
+            ->filter(function($contractPeople) {
185 185
                 return $contractPeople->getPeopleType() == 'Payer';
186 186
             });
187 187
         if ($contractPayers->isEmpty()) {
Please login to merge, or discard this patch.