PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.11
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.11
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php +8 -8 3.1.33.4.11 View file →
@@ -174,15 +174,15 @@
174 174
175 175 /**
176 176 * Set X-Mode.
177 177 *
178 - * @param X-Mode $value
178 + * @param string $value
179 179 *
180 180 * @return Layout
181 181 */
182 182 public function setXMode($value)
183 183 {
184 - $this->xMode = $value;
184 + $this->xMode = (string) $value;
185 185
186 186 return $this;
187 187 }
188 188
@@ -198,15 +198,15 @@
198 198
199 199 /**
200 200 * Set Y-Mode.
201 201 *
202 - * @param Y-Mode $value
202 + * @param string $value
203 203 *
204 204 * @return Layout
205 205 */
206 206 public function setYMode($value)
207 207 {
208 - $this->yMode = $value;
208 + $this->yMode = (string) $value;
209 209
210 210 return $this;
211 211 }
212 212
@@ -222,15 +222,15 @@
222 222
223 223 /**
224 224 * Set X-Position.
225 225 *
226 - * @param X-Position $value
226 + * @param float $value
227 227 *
228 228 * @return Layout
229 229 */
230 230 public function setXPosition($value)
231 231 {
232 - $this->xPos = $value;
232 + $this->xPos = (float) $value;
233 233
234 234 return $this;
235 235 }
236 236
@@ -246,15 +246,15 @@
246 246
247 247 /**
248 248 * Set Y-Position.
249 249 *
250 - * @param Y-Position $value
250 + * @param float $value
251 251 *
252 252 * @return Layout
253 253 */
254 254 public function setYPosition($value)
255 255 {
256 - $this->yPos = $value;
256 + $this->yPos = (float) $value;
257 257
258 258 return $this;
259 259 }
260 260