Passed
Branch master (efe92f)
by Nadir
09:45
created
Category
Factory/Html2pdfFactory.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  */
14 14
 
15 15
 
16
-namespace UGA\Html2PDFBundle\Factory ;
16
+namespace UGA\Html2PDFBundle\Factory;
17 17
 
18 18
 class Html2pdfFactory 
19 19
 {
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
             
47 47
     {
48 48
         return new \HTML2PDF(
49
-            $orientation ? $orientation :   $this->html2_pdf_orientation ,
50
-            $format ? $format :             $this->html2_pdf_format,
51
-            $lang ? $lang :                 $this->html2_pdf_lang,
52
-            $unicode ? $unicode :           $this->html2_pdf_unicode,
53
-            $margin ? $margin :             $this->html2_pdf_margin , 
54
-            $encoding ? $encoding :         $this->html2_pdf_encoding
49
+            $orientation ? $orientation : $this->html2_pdf_orientation,
50
+            $format ? $format : $this->html2_pdf_format,
51
+            $lang ? $lang : $this->html2_pdf_lang,
52
+            $unicode ? $unicode : $this->html2_pdf_unicode,
53
+            $margin ? $margin : $this->html2_pdf_margin, 
54
+            $encoding ? $encoding : $this->html2_pdf_encoding
55 55
             
56 56
         );
57 57
     }
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
                     ->prototype('scalar')->end()
32 32
                     ->defaultValue(array(10, 15, 10, 15))
33 33
                 ->end()
34
-            ->end() ; 
34
+            ->end(); 
35 35
 
36 36
         return $treeBuilder;
37 37
     }
Please login to merge, or discard this patch.