Passed
Push — master ( 8f5e6a...061d3e )
by Felipe
03:26
created
src/image/Image.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,18 +38,18 @@
 block discarded – undo
38 38
     // for __get, __set
39 39
     private $_left_margin = 30, $_right_margin = 30, $_top_margin = 20, $_bottom_margin = 30;
40 40
     //private $_plotwidth=0,$_plotheight=0;
41
-    private $_width       = 0, $_height       = 0;
41
+    private $_width       = 0, $_height = 0;
42 42
     private $_line_weight = 1;
43 43
 
44 44
     protected $expired           = true;
45
-    protected $lastx             = 0, $lasty             = 0;
45
+    protected $lastx             = 0, $lasty = 0;
46 46
     protected $obs_list          = [];
47
-    protected $font_size         = 12, $font_family         = FF_DEFAULT, $font_style         = FS_NORMAL;
47
+    protected $font_size         = 12, $font_family = FF_DEFAULT, $font_style = FS_NORMAL;
48 48
     protected $font_file         = '';
49
-    protected $text_halign       = "left", $text_valign       = "bottom";
49
+    protected $text_halign       = "left", $text_valign = "bottom";
50 50
     protected $use_anti_aliasing = false;
51 51
     protected $quality           = null;
52
-    protected $colorstack        = [], $colorstackidx        = 0;
52
+    protected $colorstack        = [], $colorstackidx = 0;
53 53
     protected $canvascolor       = 'white';
54 54
     protected $langconv          = null;
55 55
     protected $iInterlace        = false;
Please login to merge, or discard this patch.