Passed
Pull Request — master (#23)
by Felipe
03:41
created
src/graph/AxisPrototype.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     protected $show_last_label          = true;
36 36
     protected $label_step               = 1; // Used by a text axis to specify what multiple of major steps
37 37
     // should be labeled.
38
-    protected $labelPos                                 = 0; // Which side of the axis should the labels be?
38
+    protected $labelPos = 0; // Which side of the axis should the labels be?
39 39
     protected $title_adjust;
40 40
     protected $title_margin;
41 41
     protected $title_side                                   = SIDE_LEFT;
Please login to merge, or discard this patch.
src/plot/PolarPlot.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 //--------------------------------------------------------------------------
35 35
 class PolarPlot
36 36
 {
37
-    public $line_style       = 'solid';
37
+    public $line_style = 'solid';
38 38
     public $mark;
39 39
     public $legendcsimtarget     = '';
40 40
     public $legendcsimalt        = '';
Please login to merge, or discard this patch.
src/plot/PlotMark.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 class PlotMark
21 21
 {
22 22
     public $title;
23
-    public $show      = true;
23
+    public $show = true;
24 24
     public $type;
25 25
     public $weight             = 1;
26 26
     public $iFormatCallback    = "";
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
     public $color              = "black";
30 30
     public $width              = 4;
31 31
     private $yvalue;
32
-    private $xvalue  = '';
32
+    private $xvalue = '';
33 33
     private $csimtarget;
34
-    private $csimwintarget  = '';
34
+    private $csimwintarget = '';
35 35
     private $csimalt;
36 36
     private $csimareas;
37 37
     private $markimg          = '';
Please login to merge, or discard this patch.