Completed
Push — master ( c79ed1...feef39 )
by Marko
02:19
created
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.
src/Core/Components/Scale/Methods/DefaultMethods.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * Roll, rotation about the X-axis.
31 31
      *
32 32
      * @param array $dom_attributes            
33
-     * @param float|int $scale_x            
33
+     * @param double $scale_x            
34 34
      * @return void
35 35
      */
36 36
     public function scaleX(array &$dom_attributes, float $scale_x)
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * Pitch, rotation about the Y-axis.
43 43
      *
44 44
      * @param array $dom_attributes            
45
-     * @param float|int $scaling_y            
45
+     * @param float|int $scale_y            
46 46
      * @return void
47 47
      */
48 48
     public function scaleY(array &$dom_attributes, float $scale_y)
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * Yaw, rotation about the Z-axis.
55 55
      *
56 56
      * @param array $dom_attributes            
57
-     * @param float|int $scale_z            
57
+     * @param double $scale_z            
58 58
      * @return void
59 59
      */
60 60
     public function scaleZ(array &$dom_attributes, float $scale_z)
Please login to merge, or discard this patch.
src/Core/Entity.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -109,9 +109,6 @@
 block discarded – undo
109 109
      *
110 110
      * All entities inherently have the scale component.
111 111
      *
112
-     * @param float|int $x            
113
-     * @param float|int $y            
114
-     * @param float|int $z            
115 112
      * @return \AframeVR\Core\Entity
116 113
      */
117 114
     public function scale(float $scale_x = 0, float $scale_y = 0, float $scale_z = 0): Entity
Please login to merge, or discard this patch.