1 | <?php |
||
25 | final class HighchartsResponsive implements JsonSerializable { |
||
26 | |||
27 | /** |
||
28 | * Rules. |
||
29 | * |
||
30 | * @var array |
||
31 | * @since 5.0.0 |
||
32 | */ |
||
33 | private $rules; |
||
34 | |||
35 | /** |
||
36 | * Constructor. |
||
37 | * |
||
38 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
39 | */ |
||
40 | public function __construct($ignoreDefaultValues = true) { |
||
45 | |||
46 | /** |
||
47 | * Clear. |
||
48 | * |
||
49 | * @return void |
||
50 | */ |
||
51 | public function clear() { |
||
56 | |||
57 | /** |
||
58 | * Get the rules. |
||
59 | * |
||
60 | * @return array Returns the rules. |
||
61 | */ |
||
62 | public function getRules() { |
||
65 | |||
66 | /** |
||
67 | * Serialize this instance. |
||
68 | * |
||
69 | * @return array Returns an array representing this instance. |
||
70 | */ |
||
71 | public function jsonSerialize() { |
||
74 | |||
75 | /** |
||
76 | * Set the rules. |
||
77 | * |
||
78 | * @param array $rules The rules. |
||
79 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsResponsive Returns the highcharts responsive. |
||
80 | */ |
||
81 | public function setRules(array $rules = null) { |
||
85 | |||
86 | /** |
||
87 | * Convert into an array representing this instance. |
||
88 | * |
||
89 | * @return array Returns an array representing this instance. |
||
90 | */ |
||
91 | public function toArray() { |
||
102 | |||
103 | } |
||
104 |
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..