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 | * @param string $type |
||
62 | * @return $this |
||
63 | */ |
||
64 | public function setType($type) |
||
69 | |||
70 | /** |
||
71 | * @param string $flow |
||
72 | * @return $this |
||
73 | */ |
||
74 | public function setFlow($flow) |
||
79 | |||
80 | /** |
||
81 | * @param string[] $scopes |
||
82 | * @return $this |
||
83 | */ |
||
84 | public function setScopes($scopes) |
||
89 | |||
90 | /** |
||
91 | * @param string $authorizationUrl |
||
92 | * @return $this |
||
93 | */ |
||
94 | public function setAuthorizationUrl($authorizationUrl) |
||
99 | |||
100 | /** |
||
101 | * @param string $description |
||
102 | * @return $this |
||
103 | */ |
||
104 | public function setDescription($description) |
||
109 | } |
||
110 | |||
111 |
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..