1 | <?php |
||
27 | class ManganelMetaOptions extends MetaOptions |
||
28 | { |
||
29 | |||
30 | /** |
||
31 | * Meta container class name for type (class) |
||
32 | * @var string |
||
33 | */ |
||
34 | public $typeClass = DocumentTypeMeta::class; |
||
35 | |||
36 | /** |
||
37 | * Meta container class name for method |
||
38 | * @var string |
||
39 | */ |
||
40 | public $methodClass = DocumentMethodMeta::class; |
||
41 | |||
42 | /** |
||
43 | * Meta container class name for property |
||
44 | * @var string |
||
45 | */ |
||
46 | public $propertyClass = DocumentPropertyMeta::class; |
||
47 | |||
48 | /** |
||
49 | * Namespaces for annotations |
||
50 | * @var string |
||
51 | */ |
||
52 | public $namespaces = [ |
||
53 | SearchIndexAnnotation::Ns |
||
54 | ]; |
||
55 | |||
56 | 59 | public function __construct() |
|
62 | |||
63 | } |
||
64 |
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..