6
6
7
7
class Swagger2 extends Spec
8
8
{
9
- /**
10
- * @var array
11
- */
12
- // private array $serviceParams = [];
13
-
14
9
/**
15
10
* @return string
16
11
*/
@@ -112,7 +107,6 @@ public function getServices()
112
107
$ list [$ tag ] = [
113
108
'name ' => $ tag ,
114
109
'methods ' => $ methods ,
115
- // 'globalParams' => $this->serviceParams[$tag] ?? [],
116
110
];
117
111
}
118
112
}
@@ -138,7 +132,6 @@ public function getServices()
138
132
public function getMethods ($ service )
139
133
{
140
134
$ list = [];
141
- // $serviceParams= [];
142
135
$ security = $ this ->getAttribute ('securityDefinitions ' , []);
143
136
$ paths = $ this ->getAttribute ('paths ' , []);
144
137
@@ -210,7 +203,6 @@ public function getMethods($service)
210
203
'default ' => $ parameter ['default ' ] ?? null ,
211
204
'example ' => $ parameter ['x-example ' ] ?? null ,
212
205
'isUploadID ' => $ parameter ['x-upload-id ' ] ?? false ,
213
- // 'isGlobal' => $parameter['x-global'] ?? false,
214
206
'array ' => [
215
207
'type ' => $ parameter ['items ' ]['type ' ] ?? '' ,
216
208
],
@@ -222,10 +214,6 @@ public function getMethods($service)
222
214
223
215
$ param ['default ' ] = (is_array ($ param ['default ' ])) ? json_encode ($ param ['default ' ]) : $ param ['default ' ];
224
216
225
- // if(($parameter['x-global'] ?? false)) {
226
- // $serviceParams[$param['name']] = $param;
227
- // }
228
-
229
217
switch ($ parameter ['in ' ]) {
230
218
case 'header ' :
231
219
$ output ['parameters ' ]['header ' ][] = $ param ;
@@ -250,7 +238,6 @@ public function getMethods($service)
250
238
$ param ['required ' ] = (in_array ($ key , $ bodyRequired ));
251
239
$ param ['default ' ] = $ value ['default ' ] ?? null ;
252
240
$ param ['example ' ] = $ value ['x-example ' ] ?? null ;
253
- // $param['isGlobal'] = $value['x-global'] ?? false;
254
241
$ param ['isUploadID ' ] = $ value ['x-upload-id ' ] ?? false ;
255
242
$ param ['array ' ] = [
256
243
'type ' => $ value ['items ' ]['type ' ] ?? '' ,
@@ -282,8 +269,6 @@ public function getMethods($service)
282
269
}
283
270
}
284
271
285
- // $this->serviceParams[$service] = $serviceParams;
286
-
287
272
return $ list ;
288
273
}
289
274
0 commit comments