1 | <?php |
||
11 | class ConditionFactory |
||
12 | { |
||
13 | /** |
||
14 | * The decorator manger |
||
15 | * |
||
16 | * @var null| ConditionPluginManager |
||
17 | */ |
||
18 | protected static $conditionManager = null; |
||
19 | |||
20 | /** |
||
21 | * |
||
22 | * @param string $name |
||
23 | * @param array $options |
||
24 | * @return AbstractCondition |
||
25 | */ |
||
26 | public static function factory($name, $options) |
||
31 | |||
32 | /** |
||
33 | * Get the condition plugin manager |
||
34 | * |
||
35 | * @return ConditionPluginManager |
||
36 | */ |
||
37 | public static function getPluginManager() |
||
44 | } |
||
45 |
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..