Completed
Push — master ( 885734...c79ed1 )
by Marko
03:03
created
src/Core/Components/Geometry/Methods/ConeMethods.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * Height of the cone.
53 53
      *
54 54
      * @param array $dom_attributes            
55
-     * @param float|int $height            
55
+     * @param double $height            
56 56
      * @return void
57 57
      */
58 58
     public function height(array &$dom_attributes, float $height)
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * Radius of the bottom end of the cone.
78 78
      *
79 79
      * @param array $dom_attributes            
80
-     * @param float|int $radiusBottom            
80
+     * @param double $radiusBottom            
81 81
      * @return void
82 82
      */
83 83
     public function radiusBottom(array &$dom_attributes, float $radiusBottom)
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * Radius of the top end of the cone.
90 90
      *
91 91
      * @param array $dom_attributes            
92
-     * @param float|int $radiusTop            
92
+     * @param double $radiusTop            
93 93
      * @return void
94 94
      */
95 95
     public function radiusTop(array &$dom_attributes, float $radiusTop)
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      * Starting angle in degrees.
126 126
      *
127 127
      * @param array $dom_attributes            
128
-     * @param float|int $thetaStart            
128
+     * @param double $thetaStart            
129 129
      * @return void
130 130
      */
131 131
     public function thetaStart(array &$dom_attributes, float $thetaStart)
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      * Central angle in degrees.
138 138
      *
139 139
      * @param array $dom_attributes            
140
-     * @param float|int $thetaLength            
140
+     * @param double $thetaLength            
141 141
      * @return void
142 142
      */
143 143
     public function thetaLength(array &$dom_attributes, float $thetaLength)
Please login to merge, or discard this patch.
src/Core/Components/Geometry/Methods/RingMethods.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * Radius of the inner hole of the ring.
51 51
      *
52 52
      * @param array $dom_attributes            
53
-     * @param float|int $radiusInner            
53
+     * @param double $radiusInner            
54 54
      * @return void
55 55
      */
56 56
     public function radiusInner(array &$dom_attributes, float $radiusInner)
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * Radius of the outer edge of the ring.
63 63
      *
64 64
      * @param array $dom_attributes            
65
-     * @param float|int $radiusOuter            
65
+     * @param double $radiusOuter            
66 66
      * @return void
67 67
      */
68 68
     public function radiusOuter(array &$dom_attributes, float $radiusOuter)
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * Central angle in degrees.
75 75
      *
76 76
      * @param array $dom_attributes            
77
-     * @param float|int $thetaLength            
77
+     * @param double $thetaLength            
78 78
      * @return void
79 79
      */
80 80
     public function thetaLength(array &$dom_attributes, float $thetaLength)
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      * Starting angle in degrees.
87 87
      *
88 88
      * @param array $dom_attributes            
89
-     * @param float|int $thetaStart            
89
+     * @param double $thetaStart            
90 90
      * @return void
91 91
      */
92 92
     public function thetaStart(array &$dom_attributes, float $thetaStart)
Please login to merge, or discard this patch.
src/Core/Components/Geometry/Methods/TorusMethods.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * Radius of the outer edge of the torus.
47 47
      *
48 48
      * @param array $dom_attributes            
49
-     * @param float|int $radius            
49
+     * @param double $radius            
50 50
      * @return void
51 51
      */
52 52
     public function radius(array &$dom_attributes, float $radius)
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * Radius of the tube.
59 59
      *
60 60
      * @param array $dom_attributes            
61
-     * @param float|int $radiusTubular            
61
+     * @param double $radiusTubular            
62 62
      * @return void
63 63
      */
64 64
     public function radiusTubular(array &$dom_attributes, float $radiusTubular)
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      * Central angle.
97 97
      *
98 98
      * @param array $dom_attributes            
99
-     * @param float|int $arc            
99
+     * @param double $arc            
100 100
      * @return void
101 101
      */
102 102
     public function arc(array &$dom_attributes, float $arc)
Please login to merge, or discard this patch.