Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,8 @@ use function sprintf;
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -806,9 +805,9 @@ use function sprintf;
'Error JSON decoding server response (%s)',
$request->getUri()
),
$response->getStatusCode(),
$response->getHeaders(),
$content
$request,
$response,
$exception
);
}
}
Expand Down
11 changes: 5 additions & 6 deletions samples/client/petstore/php/psr-18/lib/Api/AnotherFakeApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,8 @@ public function call123TestSpecialTagsWithHttpInfo($client)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -514,9 +513,9 @@ private function handleResponseWithDataType(
'Error JSON decoding server response (%s)',
$request->getUri()
),
$response->getStatusCode(),
$response->getHeaders(),
$content
request,
$response,
$exception
);
}
}
Expand Down
11 changes: 5 additions & 6 deletions samples/client/petstore/php/psr-18/lib/Api/DefaultApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,8 @@ public function fooGetWithHttpInfo()
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -489,9 +488,9 @@ private function handleResponseWithDataType(
'Error JSON decoding server response (%s)',
$request->getUri()
),
$response->getStatusCode(),
$response->getHeaders(),
$content
request,
$response,
$exception
);
}
}
Expand Down
76 changes: 31 additions & 45 deletions samples/client/petstore/php/psr-18/lib/Api/FakeApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,8 @@ public function fakeBigDecimalMapWithHttpInfo()
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -486,9 +485,8 @@ public function fakeEnumEndpointWithHttpInfo($enum_class, $enum_class_array, $en
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -785,9 +783,8 @@ public function fakeHealthGetWithHttpInfo()
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -1256,9 +1253,8 @@ public function fakeOuterBooleanSerializeWithHttpInfo($body = null)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -1498,9 +1494,8 @@ public function fakeOuterCompositeSerializeWithHttpInfo($outer_composite = null)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -1740,9 +1735,8 @@ public function fakeOuterNumberSerializeWithHttpInfo($body = null)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -1982,9 +1976,8 @@ public function fakeOuterStringSerializeWithHttpInfo($body = null)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -2224,9 +2217,8 @@ public function fakePropertyEnumIntegerSerializeWithHttpInfo($outer_object_with_
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -2489,9 +2481,8 @@ public function fakeWith400And4xxRangeResponseEndpointWithHttpInfo($pet)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -2763,9 +2754,8 @@ public function fakeWith400And4xxRangeResponseNo4xxDatatypeEndpointWithHttpInfo(
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -3025,9 +3015,8 @@ public function fakeWith400ResponseEndpointWithHttpInfo($pet)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -3296,9 +3285,8 @@ public function fakeWith4xxRangeResponseEndpointWithHttpInfo($pet)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -3562,9 +3550,8 @@ public function fakeWith4xxRangeResponseNo4xxDatatypeEndpointWithHttpInfo($pet)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -4933,9 +4920,8 @@ public function testClientModelWithHttpInfo($client)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -7349,9 +7335,9 @@ private function handleResponseWithDataType(
'Error JSON decoding server response (%s)',
$request->getUri()
),
$response->getStatusCode(),
$response->getHeaders(),
$content
request,
$response,
$exception
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,8 @@ public function testClassnameWithHttpInfo($client)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -519,9 +518,9 @@ private function handleResponseWithDataType(
'Error JSON decoding server response (%s)',
$request->getUri()
),
$response->getStatusCode(),
$response->getHeaders(),
$content
request,
$response,
$exception
);
}
}
Expand Down
41 changes: 17 additions & 24 deletions samples/client/petstore/php/psr-18/lib/Api/PetApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -717,9 +717,8 @@ public function findPetsByStatusWithHttpInfo($status)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -978,9 +977,8 @@ public function findPetsByTagsWithHttpInfo($tags)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -1240,9 +1238,8 @@ public function getPetByIdWithHttpInfo($pet_id)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -1984,9 +1981,8 @@ public function uploadFileWithHttpInfo($pet_id, $additional_metadata = null, $fi
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -2266,9 +2262,8 @@ public function uploadFileWithRequiredFileWithHttpInfo($pet_id, $required_file,
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -2566,9 +2561,8 @@ public function uploadImageFullFormDataWithHttpInfo($pet_id, $name, $photo_urls,
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -2883,9 +2877,8 @@ public function uploadImageFullFormDataNestedWithHttpInfo($pet_id, $pet = null)
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
$request,
$response
);
}

Expand Down Expand Up @@ -3164,9 +3157,9 @@ private function handleResponseWithDataType(
'Error JSON decoding server response (%s)',
$request->getUri()
),
$response->getStatusCode(),
$response->getHeaders(),
$content
request,
$response,
$exception
);
}
}
Expand Down
Loading
Loading