Completed
Pull Request — master (#63)
by Marko
03:19
created
src/Core/Components/Geometry/Methods/BoxMethods.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * segmentsHeight
79 79
      * 
80 80
      * @param array $dom_attributes
81
-     * @param number $int
81
+     * @param integer $int
82 82
      */
83 83
     public function segmentsHeight(array &$dom_attributes, $int = 0)
84 84
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * segmentsWidth
90 90
      * 
91 91
      * @param array $dom_attributes
92
-     * @param number $int
92
+     * @param integer $int
93 93
      */
94 94
     public function segmentsWidth(array &$dom_attributes, $int = 0)
95 95
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * segmentsDepth
101 101
      * 
102 102
      * @param array $dom_attributes
103
-     * @param number $int
103
+     * @param integer $int
104 104
      */
105 105
     public function segmentsDepth(array &$dom_attributes, $int = 0)
106 106
     {
Please login to merge, or discard this patch.
src/Core/Entity.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     /**
121 121
      * Child entity / primitive
122 122
      *
123
-     * @return EntityChildrenFactory
123
+     * @return Helpers\EntityChildrenFactory
124 124
      */
125 125
     public function child(): EntityChildrenFactory
126 126
     {
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
      *
133 133
      * All entities inherently have the position component.
134 134
      *
135
-     * @param int|float $x_axis            
136
-     * @param int|float $y_axis            
137
-     * @param int|float $z_axis            
138
-     * @return EntityInterface
135
+     * @param integer $x_axis            
136
+     * @param integer $y_axis            
137
+     * @param integer $z_axis            
138
+     * @return \AframeVR\Interfaces\EntityInterface
139 139
      */
140 140
     public function position(float $x_axis = 0, float $y_axis = 0, float $z_axis = 0): EntityInterface
141 141
     {
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      * @param int|float $roll            
154 154
      * @param int|float $pitch            
155 155
      * @param int|float $yaw            
156
-     * @return EntityInterface
156
+     * @return \AframeVR\Interfaces\EntityInterface
157 157
      */
158 158
     public function rotation(float $roll = 0, float $pitch = 0, float $yaw = 0): EntityInterface
159 159
     {
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
      * @param int|float $scale_x            
172 172
      * @param int|float $scale_y            
173 173
      * @param int|float $scale_z            
174
-     * @return EntityInterface
174
+     * @return \AframeVR\Interfaces\EntityInterface
175 175
      */
176 176
     public function scale(float $scale_x = 1, float $scale_y = 1, float $scale_z = 1): EntityInterface
177 177
     {
Please login to merge, or discard this patch.
src/Extras/Primitives/Box.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,6 @@
 block discarded – undo
73 73
     /**
74 74
      * geometry.width
75 75
      *
76
-     * @param float $height            
77 76
      * @return self
78 77
      */
79 78
     public function width(float $width): self
Please login to merge, or discard this patch.
src/Extras/Primitives/Camera.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      *
148 148
      * {@inheritdoc}
149 149
      *
150
-     * @param int|float $zoom            
150
+     * @param double $zoom            
151 151
      * @return self
152 152
      */
153 153
     public function zoom(float $zoom): self
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     /**
163 163
      * Camera child cursor entity
164 164
      *
165
-     * @return \AframeVR\Interfaces\Core\Components\CursorCMPTIF
165
+     * @return Entity
166 166
      */
167 167
     public function cursor()
168 168
     {
Please login to merge, or discard this patch.