1 | <?php |
||
25 | final class HighchartsPlotLines implements JsonSerializable { |
||
26 | |||
27 | /** |
||
28 | * Class name. |
||
29 | * |
||
30 | * @var string |
||
31 | * @since 5.0.0 |
||
32 | */ |
||
33 | private $className; |
||
34 | |||
35 | /** |
||
36 | * Color. |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | private $color; |
||
41 | |||
42 | /** |
||
43 | * Dash style. |
||
44 | * |
||
45 | * @var string |
||
46 | * @since 1.2 |
||
47 | */ |
||
48 | private $dashStyle = "Solid"; |
||
49 | |||
50 | /** |
||
51 | * Events. |
||
52 | * |
||
53 | * @var array |
||
54 | * @since 1.2 |
||
55 | */ |
||
56 | private $events; |
||
57 | |||
58 | /** |
||
59 | * Id. |
||
60 | * |
||
61 | * @var string |
||
62 | */ |
||
63 | private $id; |
||
64 | |||
65 | /** |
||
66 | * Label. |
||
67 | * |
||
68 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\PlotLines\HighchartsLabel |
||
69 | */ |
||
70 | private $label; |
||
71 | |||
72 | /** |
||
73 | * Value. |
||
74 | * |
||
75 | * @var integer |
||
76 | */ |
||
77 | private $value; |
||
78 | |||
79 | /** |
||
80 | * Width. |
||
81 | * |
||
82 | * @var integer |
||
83 | */ |
||
84 | private $width; |
||
85 | |||
86 | /** |
||
87 | * Z index. |
||
88 | * |
||
89 | * @var integer |
||
90 | * @since 1.2 |
||
91 | */ |
||
92 | private $zIndex; |
||
93 | |||
94 | /** |
||
95 | * Constructor. |
||
96 | * |
||
97 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
98 | */ |
||
99 | public function __construct($ignoreDefaultValues = true) { |
||
104 | |||
105 | /** |
||
106 | * Clear. |
||
107 | * |
||
108 | * @return void |
||
109 | */ |
||
110 | public function clear() { |
||
141 | |||
142 | /** |
||
143 | * Get the class name. |
||
144 | * |
||
145 | * @return string Returns the class name. |
||
146 | */ |
||
147 | public function getClassName() { |
||
150 | |||
151 | /** |
||
152 | * Get the color. |
||
153 | * |
||
154 | * @return string Returns the color. |
||
155 | */ |
||
156 | public function getColor() { |
||
159 | |||
160 | /** |
||
161 | * Get the dash style. |
||
162 | * |
||
163 | * @return string Returns the dash style. |
||
164 | */ |
||
165 | public function getDashStyle() { |
||
168 | |||
169 | /** |
||
170 | * Get the events. |
||
171 | * |
||
172 | * @return array Returns the events. |
||
173 | */ |
||
174 | public function getEvents() { |
||
177 | |||
178 | /** |
||
179 | * Get the id. |
||
180 | * |
||
181 | * @return string Returns the id. |
||
182 | */ |
||
183 | public function getId() { |
||
186 | |||
187 | /** |
||
188 | * Get the label. |
||
189 | * |
||
190 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\PlotLines\HighchartsLabel Returns the label. |
||
191 | */ |
||
192 | public function getLabel() { |
||
195 | |||
196 | /** |
||
197 | * Get the value. |
||
198 | * |
||
199 | * @return integer Returns the value. |
||
200 | */ |
||
201 | public function getValue() { |
||
204 | |||
205 | /** |
||
206 | * Get the width. |
||
207 | * |
||
208 | * @return integer Returns the width. |
||
209 | */ |
||
210 | public function getWidth() { |
||
213 | |||
214 | /** |
||
215 | * Get the z index. |
||
216 | * |
||
217 | * @return integer Returns the z index. |
||
218 | */ |
||
219 | public function getZIndex() { |
||
222 | |||
223 | /** |
||
224 | * Serialize this instance. |
||
225 | * |
||
226 | * @return array Returns an array representing this instance. |
||
227 | */ |
||
228 | public function jsonSerialize() { |
||
231 | |||
232 | /** |
||
233 | * Create a new label. |
||
234 | * |
||
235 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\PlotLines\HighchartsLabel Returns the label. |
||
236 | */ |
||
237 | public function newLabel() { |
||
241 | |||
242 | /** |
||
243 | * Set the class name. |
||
244 | * |
||
245 | * @param string $className The class name. |
||
246 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
247 | */ |
||
248 | public function setClassName($className) { |
||
252 | |||
253 | /** |
||
254 | * Set the color. |
||
255 | * |
||
256 | * @param string $color The color. |
||
257 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
258 | */ |
||
259 | public function setColor($color) { |
||
263 | |||
264 | /** |
||
265 | * Set the dash style. |
||
266 | * |
||
267 | * @param string $dashStyle The dash style. |
||
268 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
269 | */ |
||
270 | public function setDashStyle($dashStyle) { |
||
288 | |||
289 | /** |
||
290 | * Set the events. |
||
291 | * |
||
292 | * @param array $events The events. |
||
293 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
294 | */ |
||
295 | public function setEvents(array $events = null) { |
||
299 | |||
300 | /** |
||
301 | * Set the id. |
||
302 | * |
||
303 | * @param string $id The id. |
||
304 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
305 | */ |
||
306 | public function setId($id) { |
||
310 | |||
311 | /** |
||
312 | * Set the label. |
||
313 | * |
||
314 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\PlotLines\HighchartsLabel $label The label. |
||
315 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
316 | */ |
||
317 | public function setLabel(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\PlotLines\HighchartsLabel $label = null) { |
||
321 | |||
322 | /** |
||
323 | * Set the value. |
||
324 | * |
||
325 | * @param integer $value The value. |
||
326 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
327 | */ |
||
328 | public function setValue($value) { |
||
332 | |||
333 | /** |
||
334 | * Set the width. |
||
335 | * |
||
336 | * @param integer $width The width. |
||
337 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
338 | */ |
||
339 | public function setWidth($width) { |
||
343 | |||
344 | /** |
||
345 | * Set the z index. |
||
346 | * |
||
347 | * @param integer $zIndex The z index. |
||
348 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsPlotLines Returns the highcharts plot lines. |
||
349 | */ |
||
350 | public function setZIndex($zIndex) { |
||
354 | |||
355 | /** |
||
356 | * Convert into an array representing this instance. |
||
357 | * |
||
358 | * @return array Returns an array representing this instance. |
||
359 | */ |
||
360 | public function toArray() { |
||
397 | |||
398 | } |
||
399 |
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..