You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some urls that use multiple path variables, mostly are string all were working but now are broken, all the swagger endpoints
that i have like this one the second parameter always have this value '{specialLink}' like is not replacing the value from the url, if i change the type of value of the second parameter it works, just when are strings just the first works
I have some urls that use multiple path variables, mostly are string all were working but now are broken, all the swagger endpoints
that i have like this one the second parameter always have this value '{specialLink}' like is not replacing the value from the url, if i change the type of value of the second parameter it works, just when are strings just the first works
#[OAT\Delete(
path: '/manufacturers/{id}/special-links/{specialLink}',
new OAT\Parameter(
name: 'specialLink',
description: 'Special link',
in: 'path',
schema: new OAT\Schema(type: 'string'),
example: 'cccb0dc73359070a4269f780fe93ff53'
)
#[Delete('manufacturers/{id}/special-links/{specialLink}')]
public function destroy(Request $request, string $id, string $specialLink): JsonResponse
The text was updated successfully, but these errors were encountered: