@@ -309,7 +309,7 @@ protected function fakeOuterBooleanSerializeRequest($body = null)
309
309
310
310
} else {
311
311
// for HTTP post (form)
312
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
312
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
313
313
}
314
314
}
315
315
@@ -325,7 +325,7 @@ protected function fakeOuterBooleanSerializeRequest($body = null)
325
325
$ headers
326
326
);
327
327
328
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
328
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
329
329
return new Request (
330
330
'POST ' ,
331
331
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -556,7 +556,7 @@ protected function fakeOuterCompositeSerializeRequest($body = null)
556
556
557
557
} else {
558
558
// for HTTP post (form)
559
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
559
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
560
560
}
561
561
}
562
562
@@ -572,7 +572,7 @@ protected function fakeOuterCompositeSerializeRequest($body = null)
572
572
$ headers
573
573
);
574
574
575
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
575
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
576
576
return new Request (
577
577
'POST ' ,
578
578
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -803,7 +803,7 @@ protected function fakeOuterNumberSerializeRequest($body = null)
803
803
804
804
} else {
805
805
// for HTTP post (form)
806
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
806
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
807
807
}
808
808
}
809
809
@@ -819,7 +819,7 @@ protected function fakeOuterNumberSerializeRequest($body = null)
819
819
$ headers
820
820
);
821
821
822
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
822
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
823
823
return new Request (
824
824
'POST ' ,
825
825
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -1050,7 +1050,7 @@ protected function fakeOuterStringSerializeRequest($body = null)
1050
1050
1051
1051
} else {
1052
1052
// for HTTP post (form)
1053
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
1053
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
1054
1054
}
1055
1055
}
1056
1056
@@ -1066,7 +1066,7 @@ protected function fakeOuterStringSerializeRequest($body = null)
1066
1066
$ headers
1067
1067
);
1068
1068
1069
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
1069
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
1070
1070
return new Request (
1071
1071
'POST ' ,
1072
1072
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -1281,7 +1281,7 @@ protected function testBodyWithQueryParamsRequest($body, $query)
1281
1281
1282
1282
} else {
1283
1283
// for HTTP post (form)
1284
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
1284
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
1285
1285
}
1286
1286
}
1287
1287
@@ -1297,7 +1297,7 @@ protected function testBodyWithQueryParamsRequest($body, $query)
1297
1297
$ headers
1298
1298
);
1299
1299
1300
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
1300
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
1301
1301
return new Request (
1302
1302
'PUT ' ,
1303
1303
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -1538,7 +1538,7 @@ protected function testClientModelRequest($body)
1538
1538
1539
1539
} else {
1540
1540
// for HTTP post (form)
1541
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
1541
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
1542
1542
}
1543
1543
}
1544
1544
@@ -1554,7 +1554,7 @@ protected function testClientModelRequest($body)
1554
1554
$ headers
1555
1555
);
1556
1556
1557
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
1557
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
1558
1558
return new Request (
1559
1559
'PATCH ' ,
1560
1560
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -1941,7 +1941,7 @@ protected function testEndpointParametersRequest($number, $double, $pattern_with
1941
1941
1942
1942
} else {
1943
1943
// for HTTP post (form)
1944
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
1944
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
1945
1945
}
1946
1946
}
1947
1947
@@ -1961,7 +1961,7 @@ protected function testEndpointParametersRequest($number, $double, $pattern_with
1961
1961
$ headers
1962
1962
);
1963
1963
1964
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
1964
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
1965
1965
return new Request (
1966
1966
'POST ' ,
1967
1967
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -2229,7 +2229,7 @@ protected function testEnumParametersRequest($enum_form_string_array = null, $en
2229
2229
2230
2230
} else {
2231
2231
// for HTTP post (form)
2232
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
2232
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
2233
2233
}
2234
2234
}
2235
2235
@@ -2245,7 +2245,7 @@ protected function testEnumParametersRequest($enum_form_string_array = null, $en
2245
2245
$ headers
2246
2246
);
2247
2247
2248
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
2248
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
2249
2249
return new Request (
2250
2250
'GET ' ,
2251
2251
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -2449,7 +2449,7 @@ protected function testInlineAdditionalPropertiesRequest($param)
2449
2449
2450
2450
} else {
2451
2451
// for HTTP post (form)
2452
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
2452
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
2453
2453
}
2454
2454
}
2455
2455
@@ -2465,7 +2465,7 @@ protected function testInlineAdditionalPropertiesRequest($param)
2465
2465
$ headers
2466
2466
);
2467
2467
2468
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
2468
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
2469
2469
return new Request (
2470
2470
'POST ' ,
2471
2471
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
@@ -2685,7 +2685,7 @@ protected function testJsonFormDataRequest($param, $param2)
2685
2685
2686
2686
} else {
2687
2687
// for HTTP post (form)
2688
- $ httpBody = \GuzzleHttp \Psr7 \build_query ($ formParams );
2688
+ $ httpBody = \GuzzleHttp \Psr7 \Query:: build ($ formParams );
2689
2689
}
2690
2690
}
2691
2691
@@ -2701,7 +2701,7 @@ protected function testJsonFormDataRequest($param, $param2)
2701
2701
$ headers
2702
2702
);
2703
2703
2704
- $ query = \GuzzleHttp \Psr7 \build_query ($ queryParams );
2704
+ $ query = \GuzzleHttp \Psr7 \Query:: build ($ queryParams );
2705
2705
return new Request (
2706
2706
'GET ' ,
2707
2707
$ this ->config ->getHost () . $ resourcePath . ($ query ? "? {$ query }" : '' ),
0 commit comments