| 1 | <?php |
||
| 14 | class Response extends ClassStructure { |
||
| 15 | /** @var string */ |
||
| 16 | public $description; |
||
| 17 | |||
| 18 | /** @var Schema|FileSchema */ |
||
| 19 | public $schema; |
||
| 20 | |||
| 21 | /** @var Header[] */ |
||
| 22 | public $headers; |
||
| 23 | |||
| 24 | public $examples; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param Properties|static $properties |
||
| 28 | * @param JsonBasicSchema $ownerSchema |
||
| 29 | */ |
||
| 30 | public static function setUpProperties($properties, JsonBasicSchema $ownerSchema) |
||
| 47 | } |
||
| 48 | |||
| 49 |
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..