Test Failed
Push — 1.0.0-dev ( 000a84...a27cf6 )
by nguereza
02:52
created
core/libraries/PDF.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,10 +86,10 @@
 block discarded – undo
86 86
          * @return object the current instance
87 87
          */
88 88
         public function render() {
89
-           $this->dompdf->load_html($this->html);
90
-           $this->dompdf->set_paper($this->paper, $this->orientation);
91
-           $this->dompdf->render(); 
92
-           return $this;
89
+            $this->dompdf->load_html($this->html);
90
+            $this->dompdf->set_paper($this->paper, $this->orientation);
91
+            $this->dompdf->render(); 
92
+            return $this;
93 93
         }
94 94
 
95 95
         /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
          * @return object the current instance
100 100
          */
101 101
         public function setFilename($filename) {
102
-            if(stripos($filename, '.pdf') === false) {
102
+            if (stripos($filename, '.pdf') === false) {
103 103
                 $filename .= '.pdf';     
104 104
             }
105 105
             $this->filename = $filename;
Please login to merge, or discard this patch.