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 | * Label. |
||
80 | * |
||
81 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\PlotBands\HighchartsLabel |
||
82 | */ |
||
83 | private $label; |
||
84 | |||
85 | /** |
||
86 | * To. |
||
87 | * |
||
88 | * @var integer |
||
89 | */ |
||
90 | private $to; |
||
91 | |||
92 | /** |
||
93 | * Z index. |
||
94 | * |
||
95 | * @var integer |
||
96 | * @since 1.2 |
||
97 | */ |
||
98 | private $zIndex; |
||
99 | |||
100 | /** |
||
101 | * Constructor. |
||
102 | * |
||
103 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
104 | */ |
||
105 | public function __construct($ignoreDefaultValues = true) { |
||
110 | |||
111 | /** |
||
112 | * Clear. |
||
113 | * |
||
114 | * @return void |
||
115 | */ |
||
116 | public function clear() { |
||
150 | |||
151 | /** |
||
152 | * Get the border color. |
||
153 | * |
||
154 | * @return string Returns the border color. |
||
155 | */ |
||
156 | public function getBorderColor() { |
||
159 | |||
160 | /** |
||
161 | * Get the border width. |
||
162 | * |
||
163 | * @return integer Returns the border width. |
||
164 | */ |
||
165 | public function getBorderWidth() { |
||
168 | |||
169 | /** |
||
170 | * Get the class name. |
||
171 | * |
||
172 | * @return string Returns the class name. |
||
173 | */ |
||
174 | public function getClassName() { |
||
177 | |||
178 | /** |
||
179 | * Get the color. |
||
180 | * |
||
181 | * @return string Returns the color. |
||
182 | */ |
||
183 | public function getColor() { |
||
186 | |||
187 | /** |
||
188 | * Get the events. |
||
189 | * |
||
190 | * @return array Returns the events. |
||
191 | */ |
||
192 | public function getEvents() { |
||
195 | |||
196 | /** |
||
197 | * Get the from. |
||
198 | * |
||
199 | * @return integer Returns the from. |
||
200 | */ |
||
201 | public function getFrom() { |
||
204 | |||
205 | /** |
||
206 | * Get the id. |
||
207 | * |
||
208 | * @return string Returns the id. |
||
209 | */ |
||
210 | public function getId() { |
||
213 | |||
214 | /** |
||
215 | * Get the label. |
||
216 | * |
||
217 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\PlotBands\HighchartsLabel Returns the label. |
||
218 | */ |
||
219 | public function getLabel() { |
||
222 | |||
223 | /** |
||
224 | * Get the to. |
||
225 | * |
||
226 | * @return integer Returns the to. |
||
227 | */ |
||
228 | public function getTo() { |
||
231 | |||
232 | /** |
||
233 | * Get the z index. |
||
234 | * |
||
235 | * @return integer Returns the z index. |
||
236 | */ |
||
237 | public function getZIndex() { |
||
240 | |||
241 | /** |
||
242 | * Serialize this instance. |
||
243 | * |
||
244 | * @return array Returns an array representing this instance. |
||
245 | */ |
||
246 | public function jsonSerialize() { |
||
249 | |||
250 | /** |
||
251 | * Create a new label. |
||
252 | * |
||
253 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\PlotBands\HighchartsLabel Returns the label. |
||
254 | */ |
||
255 | public function newLabel() { |
||
259 | |||
260 | /** |
||
261 | * Set the border color. |
||
262 | * |
||
263 | * @param string $borderColor The border color. |
||
264 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
265 | */ |
||
266 | public function setBorderColor($borderColor) { |
||
270 | |||
271 | /** |
||
272 | * Set the border width. |
||
273 | * |
||
274 | * @param integer $borderWidth The border width. |
||
275 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
276 | */ |
||
277 | public function setBorderWidth($borderWidth) { |
||
281 | |||
282 | /** |
||
283 | * Set the class name. |
||
284 | * |
||
285 | * @param string $className The class name. |
||
286 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
287 | */ |
||
288 | public function setClassName($className) { |
||
292 | |||
293 | /** |
||
294 | * Set the color. |
||
295 | * |
||
296 | * @param string $color The color. |
||
297 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
298 | */ |
||
299 | public function setColor($color) { |
||
303 | |||
304 | /** |
||
305 | * Set the events. |
||
306 | * |
||
307 | * @param array $events The events. |
||
308 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
309 | */ |
||
310 | public function setEvents(array $events = null) { |
||
314 | |||
315 | /** |
||
316 | * Set the from. |
||
317 | * |
||
318 | * @param integer $from The from. |
||
319 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
320 | */ |
||
321 | public function setFrom($from) { |
||
325 | |||
326 | /** |
||
327 | * Set the id. |
||
328 | * |
||
329 | * @param string $id The id. |
||
330 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
331 | */ |
||
332 | public function setId($id) { |
||
336 | |||
337 | /** |
||
338 | * Set the label. |
||
339 | * |
||
340 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\PlotBands\HighchartsLabel $label The label. |
||
341 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
342 | */ |
||
343 | public function setLabel(\WBW\Bundle\HighchartsBundle\API\Chart\XAxis\PlotBands\HighchartsLabel $label = null) { |
||
347 | |||
348 | /** |
||
349 | * Set the to. |
||
350 | * |
||
351 | * @param integer $to The to. |
||
352 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
353 | */ |
||
354 | public function setTo($to) { |
||
358 | |||
359 | /** |
||
360 | * Set the z index. |
||
361 | * |
||
362 | * @param integer $zIndex The z index. |
||
363 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsPlotBands Returns the highcharts plot bands. |
||
364 | */ |
||
365 | public function setZIndex($zIndex) { |
||
369 | |||
370 | /** |
||
371 | * Convert into an array representing this instance. |
||
372 | * |
||
373 | * @return array Returns an array representing this instance. |
||
374 | */ |
||
375 | public function toArray() { |
||
415 | |||
416 | } |
||
417 |
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..