@@ -42,7 +42,7 @@ |
||
42 | 42 | * |
43 | 43 | * Delay (in milliseconds) or event name to wait on before beginning animation |
44 | 44 | * |
45 | - * @param int|string $ms |
|
45 | + * @param integer $ms |
|
46 | 46 | * @return AnimationInterface |
47 | 47 | */ |
48 | 48 | public function begin($ms = 0): AnimationInterface; |
@@ -42,7 +42,7 @@ |
||
42 | 42 | * |
43 | 43 | * Delay (in milliseconds) or event name to wait on before beginning animation |
44 | 44 | * |
45 | - * @param int|string $ms |
|
45 | + * @param integer $ms |
|
46 | 46 | * @return AnimationInterface |
47 | 47 | */ |
48 | 48 | public function begin($ms = 0): AnimationInterface; |
@@ -76,7 +76,6 @@ |
||
76 | 76 | /** |
77 | 77 | * loop video |
78 | 78 | * |
79 | - * @param string $preload |
|
80 | 79 | * @return AssetVideoInterface |
81 | 80 | */ |
82 | 81 | public function loop(bool $loop = true): AssetVideoInterface |
@@ -66,7 +66,7 @@ |
||
66 | 66 | * {@inheritdoc} |
67 | 67 | * |
68 | 68 | * @param null|string $src |
69 | - * @return void |
|
69 | + * @return AssetsInterface |
|
70 | 70 | */ |
71 | 71 | public function src(string $src = null): AssetsInterface |
72 | 72 | { |
@@ -78,7 +78,7 @@ discard block |
||
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 |
||
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 |
||
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 | { |
@@ -120,7 +120,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | { |
@@ -73,7 +73,6 @@ |
||
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 |
@@ -147,7 +147,7 @@ discard block |
||
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 |
||
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 | { |
@@ -31,7 +31,7 @@ |
||
31 | 31 | /** |
32 | 32 | * geometry.height |
33 | 33 | * |
34 | - * @param int|float $height |
|
34 | + * @param double $height |
|
35 | 35 | * @return VideoPrimitiveIF |
36 | 36 | */ |
37 | 37 | public function height(float $height = 1.75): VideoPrimitiveIF; |