Passed
Pull Request — master (#21)
by Felipe
06:48 queued 03:16
created
src/image/GanttLink.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
     private $iy1;
16 16
     private $iy2;
17 17
     private $iPathType  = 2;
18
-    private $iPathExtend  = 15;
18
+    private $iPathExtend = 15;
19 19
     private $iColor     = 'black';
20
-    private $iWeight     = 1;
20
+    private $iWeight = 1;
21 21
     private $iArrowSize = ARROW_S2;
22 22
     private $iArrowType = ARROWT_SOLID;
23 23
 
Please login to merge, or discard this patch.
src/image/Progress.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
     public $iProgress = -1;
14 14
     public $iPattern  = GANTT_SOLID;
15 15
     public $iColor    = "black";
16
-    public $iFillColor    = 'black';
16
+    public $iFillColor = 'black';
17 17
     public $iDensity  = 98;
18
-    public $iHeight  = 0.65;
18
+    public $iHeight = 0.65;
19 19
 
20 20
     public function Set($aProg)
21 21
     {
Please login to merge, or discard this patch.
src/util/LinearRegression.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
     private $ia          = 0;
14 14
     private $icalculated = false;
15 15
     public $iDet         = 0;
16
-    public $iCorr         = 0;
17
-    public $iStdErr         = 0;
16
+    public $iCorr = 0;
17
+    public $iStdErr = 0;
18 18
 
19 19
     public function __construct($aDataX, $aDataY)
20 20
     {
Please login to merge, or discard this patch.
src/graph/Axis.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -19,6 +19,10 @@
 block discarded – undo
19 19
     }
20 20
 
21 21
     // Stroke the axis.
22
+
23
+    /**
24
+     * @param LinearScale $aOtherAxisScale
25
+     */
22 26
     public function Stroke($aOtherAxisScale, $aStrokeLabels = true)
23 27
     {
24 28
         if ($this->hide) {
Please login to merge, or discard this patch.
src/graph/LogTicks.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
         return true;
26 26
     }
27 27
 
28
+    /**
29
+     * @param integer $aType
30
+     */
28 31
     public function SetLabelLogType($aType)
29 32
     {
30 33
         $this->label_logtype = $aType;
Please login to merge, or discard this patch.
src/graph/PieGraph.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -73,6 +73,9 @@
 block discarded – undo
73 73
         $this->pieaa = $aFlg;
74 74
     }
75 75
 
76
+    /**
77
+     * @param integer[] $c
78
+     */
76 79
     public function SetColor($c)
77 80
     {
78 81
         $this->SetMarginColor($c);
Please login to merge, or discard this patch.
src/graph/PolarGraph.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
         $this->SetMarginColor('white');
19 19
     }
20 20
 
21
+    /**
22
+     * @param integer $aDense
23
+     */
21 24
     public function SetDensity($aDense)
22 25
     {
23 26
         $this->SetTickDensity(TICKD_NORMAL, $aDense);
Please login to merge, or discard this patch.
src/graph/PolarLogScale.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -6,6 +6,10 @@
 block discarded – undo
6 6
     private $graph;
7 7
     public $clockwise = false;
8 8
 
9
+    /**
10
+     * @param integer $aMax
11
+     * @param PolarGraph $graph
12
+     */
9 13
     public function __construct($aMax, $graph, $aClockwise = false)
10 14
     {
11 15
         parent::__construct(0, $aMax, 'x');
Please login to merge, or discard this patch.
src/graph/PolarScale.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -6,6 +6,11 @@  discard block
 block discarded – undo
6 6
     private $graph;
7 7
     public $clockwise = false;
8 8
 
9
+    /**
10
+     * @param integer $aMax
11
+     * @param PolarGraph $graph
12
+     * @param boolean $aClockwise
13
+     */
9 14
     public function __construct($aMax, $graph, $aClockwise)
10 15
     {
11 16
         parent::__construct(0, $aMax, 'x');
@@ -18,6 +23,9 @@  discard block
 block discarded – undo
18 23
         $this->clockwise = $aFlg;
19 24
     }
20 25
 
26
+    /**
27
+     * @param integer $v
28
+     */
21 29
     public function _Translate($v)
22 30
     {
23 31
         return parent::Translate($v);
Please login to merge, or discard this patch.