1 | <?php |
||
14 | class ExternalDocs extends ClassStructure { |
||
15 | /** @var string */ |
||
16 | public $description; |
||
17 | |||
18 | /** @var string */ |
||
19 | public $url; |
||
20 | |||
21 | /** |
||
22 | * @param Properties|static $properties |
||
23 | * @param JsonBasicSchema $ownerSchema |
||
24 | */ |
||
25 | public static function setUpProperties($properties, JsonBasicSchema $ownerSchema) |
||
39 | |||
40 | /** |
||
41 | * @param string $description |
||
42 | * @return $this |
||
43 | */ |
||
44 | public function setDescription($description) |
||
49 | |||
50 | /** |
||
51 | * @param string $url |
||
52 | * @return $this |
||
53 | */ |
||
54 | public function setUrl($url) |
||
59 | } |
||
60 | |||
61 |
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..