@@ -111,9 +111,9 @@ class QueryApi
111
111
* @param int $hostIndex (Optional) host index to select the list of hosts if defined in the OpenAPI spec
112
112
*/
113
113
public function __construct (
114
- ClientInterface $ client = null ,
115
- Configuration $ config = null ,
116
- HeaderSelector $ selector = null ,
114
+ ? ClientInterface $ client = null ,
115
+ ? Configuration $ config = null ,
116
+ ? HeaderSelector $ selector = null ,
117
117
int $ hostIndex = 0
118
118
) {
119
119
$ this ->client = $ client ?: new Client ();
@@ -1853,7 +1853,7 @@ public function testQueryStyleDeepObjectExplodeTrueObjectAllOfRequest(
1853
1853
* @return string
1854
1854
*/
1855
1855
public function testQueryStyleFormExplodeFalseArrayInteger (
1856
- array $ query_object = null ,
1856
+ ? array $ query_object = null ,
1857
1857
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayInteger ' ][0 ]
1858
1858
): string
1859
1859
{
@@ -1874,7 +1874,7 @@ public function testQueryStyleFormExplodeFalseArrayInteger(
1874
1874
* @return array of string, HTTP status code, HTTP response headers (array of strings)
1875
1875
*/
1876
1876
public function testQueryStyleFormExplodeFalseArrayIntegerWithHttpInfo (
1877
- array $ query_object = null ,
1877
+ ? array $ query_object = null ,
1878
1878
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayInteger ' ][0 ]
1879
1879
): array
1880
1880
{
@@ -2001,7 +2001,7 @@ public function testQueryStyleFormExplodeFalseArrayIntegerWithHttpInfo(
2001
2001
* @return PromiseInterface
2002
2002
*/
2003
2003
public function testQueryStyleFormExplodeFalseArrayIntegerAsync (
2004
- array $ query_object = null ,
2004
+ ? array $ query_object = null ,
2005
2005
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayInteger ' ][0 ]
2006
2006
): PromiseInterface
2007
2007
{
@@ -2025,7 +2025,7 @@ function ($response) {
2025
2025
* @return PromiseInterface
2026
2026
*/
2027
2027
public function testQueryStyleFormExplodeFalseArrayIntegerAsyncWithHttpInfo (
2028
- array $ query_object = null ,
2028
+ ? array $ query_object = null ,
2029
2029
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayInteger ' ][0 ]
2030
2030
): PromiseInterface
2031
2031
{
@@ -2078,7 +2078,7 @@ function ($exception) {
2078
2078
* @return \GuzzleHttp\Psr7\Request
2079
2079
*/
2080
2080
public function testQueryStyleFormExplodeFalseArrayIntegerRequest (
2081
- array $ query_object = null ,
2081
+ ? array $ query_object = null ,
2082
2082
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayInteger ' ][0 ]
2083
2083
): Request
2084
2084
{
@@ -2171,7 +2171,7 @@ public function testQueryStyleFormExplodeFalseArrayIntegerRequest(
2171
2171
* @return string
2172
2172
*/
2173
2173
public function testQueryStyleFormExplodeFalseArrayString (
2174
- array $ query_object = null ,
2174
+ ? array $ query_object = null ,
2175
2175
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayString ' ][0 ]
2176
2176
): string
2177
2177
{
@@ -2192,7 +2192,7 @@ public function testQueryStyleFormExplodeFalseArrayString(
2192
2192
* @return array of string, HTTP status code, HTTP response headers (array of strings)
2193
2193
*/
2194
2194
public function testQueryStyleFormExplodeFalseArrayStringWithHttpInfo (
2195
- array $ query_object = null ,
2195
+ ? array $ query_object = null ,
2196
2196
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayString ' ][0 ]
2197
2197
): array
2198
2198
{
@@ -2319,7 +2319,7 @@ public function testQueryStyleFormExplodeFalseArrayStringWithHttpInfo(
2319
2319
* @return PromiseInterface
2320
2320
*/
2321
2321
public function testQueryStyleFormExplodeFalseArrayStringAsync (
2322
- array $ query_object = null ,
2322
+ ? array $ query_object = null ,
2323
2323
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayString ' ][0 ]
2324
2324
): PromiseInterface
2325
2325
{
@@ -2343,7 +2343,7 @@ function ($response) {
2343
2343
* @return PromiseInterface
2344
2344
*/
2345
2345
public function testQueryStyleFormExplodeFalseArrayStringAsyncWithHttpInfo (
2346
- array $ query_object = null ,
2346
+ ? array $ query_object = null ,
2347
2347
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayString ' ][0 ]
2348
2348
): PromiseInterface
2349
2349
{
@@ -2396,7 +2396,7 @@ function ($exception) {
2396
2396
* @return \GuzzleHttp\Psr7\Request
2397
2397
*/
2398
2398
public function testQueryStyleFormExplodeFalseArrayStringRequest (
2399
- array $ query_object = null ,
2399
+ ? array $ query_object = null ,
2400
2400
string $ contentType = self ::contentTypes['testQueryStyleFormExplodeFalseArrayString ' ][0 ]
2401
2401
): Request
2402
2402
{
0 commit comments