1 | <?php |
||
25 | final class HighchartsPlotBands implements JsonSerializable { |
||
26 | |||
27 | /** |
||
28 | * Border color. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | private $borderColor; |
||
33 | |||
34 | /** |
||
35 | * Border width. |
||
36 | * |
||
37 | * @var integer |
||
38 | */ |
||
39 | private $borderWidth = 0; |
||
40 | |||
41 | /** |
||
42 | * Class name. |
||
43 | * |
||
44 | * @var string |
||
45 | * @since 5.0.0 |
||
46 | */ |
||
47 | private $className; |
||
48 | |||
49 | /** |
||
50 | * Color. |
||
51 | * |
||
52 | * @var string |
||
53 | */ |
||
54 | private $color; |
||
55 | |||
56 | /** |
||
57 | * Events. |
||
58 | * |
||
59 | * @var array |
||
60 | * @since 1.2 |
||
61 | */ |
||
62 | private $events; |
||
63 | |||
64 | /** |
||
65 | * From. |
||
66 | * |
||
67 | * @var integer |
||
68 | */ |
||
69 | private $from; |
||
70 | |||
71 | /** |
||
72 | * Id. |
||
73 | * |
||
74 | * @var string |
||
75 | */ |
||
76 | private $id; |
||
77 | |||
78 | /** |
||
79 | * Inner radius. |
||
80 | * |
||
81 | * @var integer|string |
||
82 | * @since 2.3 |
||
83 | */ |
||
84 | private $innerRadius; |
||
85 | |||
86 | /** |
||
87 | * Label. |
||
88 | * |
||
89 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\PlotBands\HighchartsLabel |
||
90 | */ |
||
91 | private $label; |
||
92 | |||
93 | /** |
||
94 | * Outer radius. |
||
95 | * |
||
96 | * @var integer|string |
||
97 | * @since 2.3 |
||
98 | */ |
||
99 | private $outerRadius = "100%"; |
||
100 | |||
101 | /** |
||
102 | * Thickness. |
||
103 | * |
||
104 | * @var integer|string |
||
105 | * @since 2.3 |
||
106 | */ |
||
107 | private $thickness = "10"; |
||
108 | |||
109 | /** |
||
110 | * To. |
||
111 | * |
||
112 | * @var integer |
||
113 | */ |
||
114 | private $to; |
||
115 | |||
116 | /** |
||
117 | * Z index. |
||
118 | * |
||
119 | * @var integer |
||
120 | * @since 1.2 |
||
121 | */ |
||
122 | private $zIndex; |
||
123 | |||
124 | /** |
||
125 | * Constructor. |
||
126 | * |
||
127 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
128 | */ |
||
129 | public function __construct($ignoreDefaultValues = true) { |
||
134 | |||
135 | /** |
||
136 | * Clear. |
||
137 | * |
||
138 | * @return void |
||
139 | */ |
||
140 | public function clear() { |
||
183 | |||
184 | /** |
||
185 | * Get the border color. |
||
186 | * |
||
187 | * @return string Returns the border color. |
||
188 | */ |
||
189 | public function getBorderColor() { |
||
192 | |||
193 | /** |
||
194 | * Get the border width. |
||
195 | * |
||
196 | * @return integer Returns the border width. |
||
197 | */ |
||
198 | public function getBorderWidth() { |
||
201 | |||
202 | /** |
||
203 | * Get the class name. |
||
204 | * |
||
205 | * @return string Returns the class name. |
||
206 | */ |
||
207 | public function getClassName() { |
||
210 | |||
211 | /** |
||
212 | * Get the color. |
||
213 | * |
||
214 | * @return string Returns the color. |
||
215 | */ |
||
216 | public function getColor() { |
||
219 | |||
220 | /** |
||
221 | * Get the events. |
||
222 | * |
||
223 | * @return array Returns the events. |
||
224 | */ |
||
225 | public function getEvents() { |
||
228 | |||
229 | /** |
||
230 | * Get the from. |
||
231 | * |
||
232 | * @return integer Returns the from. |
||
233 | */ |
||
234 | public function getFrom() { |
||
237 | |||
238 | /** |
||
239 | * Get the id. |
||
240 | * |
||
241 | * @return string Returns the id. |
||
242 | */ |
||
243 | public function getId() { |
||
246 | |||
247 | /** |
||
248 | * Get the inner radius. |
||
249 | * |
||
250 | * @return integer|string Returns the inner radius. |
||
251 | */ |
||
252 | public function getInnerRadius() { |
||
255 | |||
256 | /** |
||
257 | * Get the label. |
||
258 | * |
||
259 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\PlotBands\HighchartsLabel Returns the label. |
||
260 | */ |
||
261 | public function getLabel() { |
||
264 | |||
265 | /** |
||
266 | * Get the outer radius. |
||
267 | * |
||
268 | * @return integer|string Returns the outer radius. |
||
269 | */ |
||
270 | public function getOuterRadius() { |
||
273 | |||
274 | /** |
||
275 | * Get the thickness. |
||
276 | * |
||
277 | * @return integer|string Returns the thickness. |
||
278 | */ |
||
279 | public function getThickness() { |
||
282 | |||
283 | /** |
||
284 | * Get the to. |
||
285 | * |
||
286 | * @return integer Returns the to. |
||
287 | */ |
||
288 | public function getTo() { |
||
291 | |||
292 | /** |
||
293 | * Get the z index. |
||
294 | * |
||
295 | * @return integer Returns the z index. |
||
296 | */ |
||
297 | public function getZIndex() { |
||
300 | |||
301 | /** |
||
302 | * Serialize this instance. |
||
303 | * |
||
304 | * @return array Returns an array representing this instance. |
||
305 | */ |
||
306 | public function jsonSerialize() { |
||
309 | |||
310 | /** |
||
311 | * Create a new label. |
||
312 | * |
||
313 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\PlotBands\HighchartsLabel Returns the label. |
||
314 | */ |
||
315 | public function newLabel() { |
||
319 | |||
320 | /** |
||
321 | * Set the border color. |
||
322 | * |
||
323 | * @param string $borderColor The border color. |
||
324 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
325 | */ |
||
326 | public function setBorderColor($borderColor) { |
||
330 | |||
331 | /** |
||
332 | * Set the border width. |
||
333 | * |
||
334 | * @param integer $borderWidth The border width. |
||
335 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
336 | */ |
||
337 | public function setBorderWidth($borderWidth) { |
||
341 | |||
342 | /** |
||
343 | * Set the class name. |
||
344 | * |
||
345 | * @param string $className The class name. |
||
346 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
347 | */ |
||
348 | public function setClassName($className) { |
||
352 | |||
353 | /** |
||
354 | * Set the color. |
||
355 | * |
||
356 | * @param string $color The color. |
||
357 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
358 | */ |
||
359 | public function setColor($color) { |
||
363 | |||
364 | /** |
||
365 | * Set the events. |
||
366 | * |
||
367 | * @param array $events The events. |
||
368 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
369 | */ |
||
370 | public function setEvents(array $events = null) { |
||
374 | |||
375 | /** |
||
376 | * Set the from. |
||
377 | * |
||
378 | * @param integer $from The from. |
||
379 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
380 | */ |
||
381 | public function setFrom($from) { |
||
385 | |||
386 | /** |
||
387 | * Set the id. |
||
388 | * |
||
389 | * @param string $id The id. |
||
390 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
391 | */ |
||
392 | public function setId($id) { |
||
396 | |||
397 | /** |
||
398 | * Set the inner radius. |
||
399 | * |
||
400 | * @param integer|string $innerRadius The inner radius. |
||
401 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
402 | */ |
||
403 | public function setInnerRadius($innerRadius) { |
||
407 | |||
408 | /** |
||
409 | * Set the label. |
||
410 | * |
||
411 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\PlotBands\HighchartsLabel $label The label. |
||
412 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
413 | */ |
||
414 | public function setLabel(\WBW\Bundle\HighchartsBundle\API\Chart\YAxis\PlotBands\HighchartsLabel $label = null) { |
||
418 | |||
419 | /** |
||
420 | * Set the outer radius. |
||
421 | * |
||
422 | * @param integer|string $outerRadius The outer radius. |
||
423 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
424 | */ |
||
425 | public function setOuterRadius($outerRadius) { |
||
429 | |||
430 | /** |
||
431 | * Set the thickness. |
||
432 | * |
||
433 | * @param integer|string $thickness The thickness. |
||
434 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
435 | */ |
||
436 | public function setThickness($thickness) { |
||
440 | |||
441 | /** |
||
442 | * Set the to. |
||
443 | * |
||
444 | * @param integer $to The to. |
||
445 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
446 | */ |
||
447 | public function setTo($to) { |
||
451 | |||
452 | /** |
||
453 | * Set the z index. |
||
454 | * |
||
455 | * @param integer $zIndex The z index. |
||
456 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
457 | */ |
||
458 | public function setZIndex($zIndex) { |
||
462 | |||
463 | /** |
||
464 | * Convert into an array representing this instance. |
||
465 | * |
||
466 | * @return array Returns an array representing this instance. |
||
467 | */ |
||
468 | public function toArray() { |
||
517 | |||
518 | } |
||
519 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..