Passed
Push — master ( d9e091...059d54 )
by Joe Nilson
01:42
created
Lib/PDF/PDFDocument.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     protected function insertBusinessDocHeader($model): void
28 28
     {
29 29
         $headerData = [
30
-            'title' => $this->i18n->trans($model->modelClassName() . '-min'),
30
+            'title' => $this->i18n->trans($model->modelClassName().'-min'),
31 31
             'subject' => $this->i18n->trans('customer'),
32 32
             'fieldName' => 'nombrecliente'
33 33
         ];
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             $headerData['title'] = Tools::fixHtml($this->format->titulo);
42 42
         }
43 43
 
44
-        $this->pdf->ezText("\n" . $headerData['title'] . ': ' . $model->numeroncf . "\n", self::FONT_SIZE + 6);
44
+        $this->pdf->ezText("\n".$headerData['title'].': '.$model->numeroncf."\n", self::FONT_SIZE + 6);
45 45
         $this->newLine();
46 46
 
47 47
         $subject = $model->getSubject();
Please login to merge, or discard this patch.