1 | <?php |
||
14 | class Oauth2AccessCodeSecurity 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 $tokenUrl; |
||
29 | |||
30 | /** @var string */ |
||
31 | public $description; |
||
32 | |||
33 | /** |
||
34 | * @param Properties|static $properties |
||
35 | * @param JsonBasicSchema $ownerSchema |
||
36 | */ |
||
37 | public static function setUpProperties($properties, JsonBasicSchema $ownerSchema) |
||
65 | |||
66 | /** |
||
67 | * @param string $type |
||
68 | * @return $this |
||
69 | */ |
||
70 | public function setType($type) |
||
75 | |||
76 | /** |
||
77 | * @param string $flow |
||
78 | * @return $this |
||
79 | */ |
||
80 | public function setFlow($flow) |
||
85 | |||
86 | /** |
||
87 | * @param string[] $scopes |
||
88 | * @return $this |
||
89 | */ |
||
90 | public function setScopes($scopes) |
||
95 | |||
96 | /** |
||
97 | * @param string $authorizationUrl |
||
98 | * @return $this |
||
99 | */ |
||
100 | public function setAuthorizationUrl($authorizationUrl) |
||
105 | |||
106 | /** |
||
107 | * @param string $tokenUrl |
||
108 | * @return $this |
||
109 | */ |
||
110 | public function setTokenUrl($tokenUrl) |
||
115 | |||
116 | /** |
||
117 | * @param string $description |
||
118 | * @return $this |
||
119 | */ |
||
120 | public function setDescription($description) |
||
125 | } |
||
126 | |||
127 |
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..