Passed
Pull Request — master (#408)
by
unknown
02:50
created
src/Legacy/Pdf.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -794,15 +794,15 @@
 block discarded – undo
794 794
         $this->setDrawColor(0);
795 795
     }
796 796
 
797
-   /**
798
-    * Desenha uma linha vertical tracejada com o FPDF
799
-    * @param   number $x      Posição horizontal inicial, em mm
800
-    * @param   number $y      Posição vertical inicial, em mm
801
-    * @param   number $w      Espessura da linha, em mm
802
-    * @param   number $yfinal posição final
803
-    * @param   number $n      Numero de traços na seção da linha com o comprimento $w
804
-    * @return  none
805
-    */
797
+    /**
798
+     * Desenha uma linha vertical tracejada com o FPDF
799
+     * @param   number $x      Posição horizontal inicial, em mm
800
+     * @param   number $y      Posição vertical inicial, em mm
801
+     * @param   number $w      Espessura da linha, em mm
802
+     * @param   number $yfinal posição final
803
+     * @param   number $n      Numero de traços na seção da linha com o comprimento $w
804
+     * @return  none
805
+     */
806 806
     public function dashedVLine($x, $y, $w, $yfinal, $n)
807 807
     {
808 808
         $this->setLineWidth($w);
Please login to merge, or discard this patch.
src/NFe/DanfeSimples.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -255,8 +255,8 @@  discard block
 block discarded – undo
255 255
         $this->pdf->cell($c1, 5, "TIPO NF", 1, 0, 'C', 1);
256 256
         $this->pdf->setFont('Arial', '', 10);
257 257
         $this->pdf->cell($c1, 5, "{$this->nfeArray['NFe']['infNFe']['ide']['tpNF']} - " . 
258
-                                  ($this->nfeArray['NFe']['infNFe']['ide']['tpNF']==1 ? 'Saida':'Entrada'),
259
-                                  1, 0, 'C', 1);
258
+                                    ($this->nfeArray['NFe']['infNFe']['ide']['tpNF']==1 ? 'Saida':'Entrada'),
259
+                                    1, 0, 'C', 1);
260 260
         $this->pdf->setFont('Arial', 'B', 10);
261 261
         $this->pdf->cell($c1, 5, "DATA EMISSAO", 1, 0, 'C', 1);
262 262
         $this->pdf->setFont('Arial', '', 10);
@@ -335,8 +335,8 @@  discard block
 block discarded – undo
335 335
                 $enderecoLinha2 .= "{$this->nfeArray['NFe']['infNFe']['entrega']['xCpl']} - ";
336 336
             }
337 337
             $enderecoLinha2 .= "{$this->nfeArray['NFe']['infNFe']['entrega']['xMun']}"
338
-                             . " / {$this->nfeArray['NFe']['infNFe']['entrega']['UF']}"
339
-                             . " - CEP {$this->nfeArray['NFe']['infNFe']['entrega']['CEP']}";
338
+                                . " / {$this->nfeArray['NFe']['infNFe']['entrega']['UF']}"
339
+                                . " - CEP {$this->nfeArray['NFe']['infNFe']['entrega']['CEP']}";
340 340
         } else {
341 341
             $enderecoLinha1 = "{$this->nfeArray['NFe']['infNFe']['dest']['enderDest']['xLgr']}";
342 342
             if (!empty($this->nfeArray['NFe']['infNFe']['dest']['enderDest']['nro'])) 
@@ -349,8 +349,8 @@  discard block
 block discarded – undo
349 349
                 $enderecoLinha2 .= "{$this->nfeArray['NFe']['infNFe']['dest']['enderDest']['xCpl']} - ";
350 350
             }
351 351
             $enderecoLinha2 .= "{$this->nfeArray['NFe']['infNFe']['dest']['enderDest']['xMun']}"
352
-                             . " / {$this->nfeArray['NFe']['infNFe']['dest']['enderDest']['UF']}"
353
-                             . " - CEP {$this->nfeArray['NFe']['infNFe']['dest']['enderDest']['CEP']}";
352
+                                . " / {$this->nfeArray['NFe']['infNFe']['dest']['enderDest']['UF']}"
353
+                                . " - CEP {$this->nfeArray['NFe']['infNFe']['dest']['enderDest']['CEP']}";
354 354
         }
355 355
         
356 356
         // LINHA 12
Please login to merge, or discard this patch.