1 | <?php |
||
14 | class Oauth2ImplicitSecurity extends ClassStructure { |
||
15 | /** @var string */ |
||
16 | public $type; |
||
17 | |||
18 | /** @var string */ |
||
19 | public $flow; |
||
20 | |||
21 | /** @var string[] */ |
||
22 | public $scopes; |
||
23 | |||
24 | /** @var string */ |
||
25 | public $authorizationUrl; |
||
26 | |||
27 | /** @var string */ |
||
28 | public $description; |
||
29 | |||
30 | /** |
||
31 | * @param Properties|static $properties |
||
32 | * @param JsonBasicSchema $ownerSchema |
||
33 | */ |
||
34 | public static function setUpProperties($properties, JsonBasicSchema $ownerSchema) |
||
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..