1 | <?php |
||
14 | class Tag extends ClassStructure { |
||
15 | /** @var string */ |
||
16 | public $name; |
||
17 | |||
18 | /** @var string */ |
||
19 | public $description; |
||
20 | |||
21 | /** @var ExternalDocs information about external documentation */ |
||
22 | public $externalDocs; |
||
23 | |||
24 | /** |
||
25 | * @param Properties|static $properties |
||
26 | * @param JsonBasicSchema $ownerSchema |
||
27 | */ |
||
28 | public static function setUpProperties($properties, JsonBasicSchema $ownerSchema) |
||
41 | } |
||
42 | |||
43 |
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..