1 | <?php |
||
25 | final class HighchartsDrillUpButton implements JsonSerializable { |
||
26 | |||
27 | /** |
||
28 | * Position. |
||
29 | * |
||
30 | * @var array |
||
31 | * @since 3.0.8 |
||
32 | */ |
||
33 | private $position; |
||
34 | |||
35 | /** |
||
36 | * Relative to. |
||
37 | * |
||
38 | * @var string |
||
39 | * @since 3.0.8 |
||
40 | */ |
||
41 | private $relativeTo = "plotBox"; |
||
42 | |||
43 | /** |
||
44 | * Theme. |
||
45 | * |
||
46 | * @var array |
||
47 | * @since 3.0.8 |
||
48 | */ |
||
49 | private $theme; |
||
50 | |||
51 | /** |
||
52 | * Constructor. |
||
53 | * |
||
54 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
55 | */ |
||
56 | public function __construct($ignoreDefaultValues = true) { |
||
61 | |||
62 | /** |
||
63 | * Clear. |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | public function clear() { |
||
78 | |||
79 | /** |
||
80 | * Get the position. |
||
81 | * |
||
82 | * @return array Returns the position. |
||
83 | */ |
||
84 | public function getPosition() { |
||
87 | |||
88 | /** |
||
89 | * Get the relative to. |
||
90 | * |
||
91 | * @return string Returns the relative to. |
||
92 | */ |
||
93 | public function getRelativeTo() { |
||
96 | |||
97 | /** |
||
98 | * Get the theme. |
||
99 | * |
||
100 | * @return array Returns the theme. |
||
101 | */ |
||
102 | public function getTheme() { |
||
105 | |||
106 | /** |
||
107 | * Serialize this instance. |
||
108 | * |
||
109 | * @return array Returns an array representing this instance. |
||
110 | */ |
||
111 | public function jsonSerialize() { |
||
114 | |||
115 | /** |
||
116 | * Set the position. |
||
117 | * |
||
118 | * @param array $position The position. |
||
119 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Drilldown\HighchartsDrillUpButton Returns the highcharts drill up button. |
||
120 | */ |
||
121 | public function setPosition(array $position = null) { |
||
125 | |||
126 | /** |
||
127 | * Set the relative to. |
||
128 | * |
||
129 | * @param string $relativeTo The relative to. |
||
130 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Drilldown\HighchartsDrillUpButton Returns the highcharts drill up button. |
||
131 | */ |
||
132 | public function setRelativeTo($relativeTo) { |
||
136 | |||
137 | /** |
||
138 | * Set the theme. |
||
139 | * |
||
140 | * @param array $theme The theme. |
||
141 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Drilldown\HighchartsDrillUpButton Returns the highcharts drill up button. |
||
142 | */ |
||
143 | public function setTheme(array $theme = null) { |
||
147 | |||
148 | /** |
||
149 | * Convert into an array representing this instance. |
||
150 | * |
||
151 | * @return array Returns an array representing this instance. |
||
152 | */ |
||
153 | public function toArray() { |
||
170 | |||
171 | } |
||
172 |
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..