Completed
Push — master ( 4c1e33...8f49b3 )
by
unknown
05:46 queued 02:40
created
src/Adapter/PDFLib.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1030,12 +1030,12 @@  discard block
 block discarded – undo
1030 1030
         // line: right edge, top end
1031 1031
         $path = $this->_pdf->add_path_point($path, 0 + $w, 0 - $rTR + $h, "line", "");
1032 1032
         // curve: top-right corner
1033
-        $path = $this->_pdf->add_path_point($path, 0 - $rTR + $w, 0 +$h, "elliptical", "radius=$rTR clockwise=false");
1033
+        $path = $this->_pdf->add_path_point($path, 0 - $rTR + $w, 0 + $h, "elliptical", "radius=$rTR clockwise=false");
1034 1034
         // line: top edge, left end
1035 1035
         $path = $this->_pdf->add_path_point($path, 0 + $rTL, 0 + $h, "line", "");
1036 1036
         // curve: top-left corner
1037 1037
         $path = $this->_pdf->add_path_point($path, 0, 0 - $rTL + $h, "elliptical", "radius=$rTL clockwise=false");
1038
-        $this->_pdf->draw_path($path, $x1, $this->_height-$y1-$h, "clip=true");
1038
+        $this->_pdf->draw_path($path, $x1, $this->_height - $y1 - $h, "clip=true");
1039 1039
     }
1040 1040
 
1041 1041
     /**
@@ -1457,7 +1457,7 @@  discard block
 block discarded – undo
1457 1457
                         break;
1458 1458
 
1459 1459
                     case 'line':
1460
-                        $this->line( $x1, $y1, $x2, $y2, $color, $width, $style );
1460
+                        $this->line($x1, $y1, $x2, $y2, $color, $width, $style);
1461 1461
                         break;
1462 1462
 
1463 1463
                 }
Please login to merge, or discard this patch.