@@ -346,14 +346,14 @@ testConfig := fiber.TestConfig{
346346
347347### Removed Methods
348348
349- - ** AllParams** : Use ` c.Bind().URL () ` instead.
349+ - ** AllParams** : Use ` c.Bind().URI () ` instead.
350350- ** ParamsInt** : Use ` Params ` with generic types.
351351- ** QueryBool** : Use ` Query ` with generic types.
352352- ** QueryFloat** : Use ` Query ` with generic types.
353353- ** QueryInt** : Use ` Query ` with generic types.
354354- ** BodyParser** : Use ` c.Bind().Body() ` instead.
355355- ** CookieParser** : Use ` c.Bind().Cookie() ` instead.
356- - ** ParamsParser** : Use ` c.Bind().URL () ` instead.
356+ - ** ParamsParser** : Use ` c.Bind().URI () ` instead.
357357- ** RedirectToRoute** : Use ` c.Redirect().Route() ` instead.
358358- ** RedirectBack** : Use ` c.Redirect().Back() ` instead.
359359- ** ReqHeaderParser** : Use ` c.Bind().Header() ` instead.
@@ -1117,7 +1117,7 @@ The `Parser` section in Fiber v3 has undergone significant changes to improve fu
11171117
11181118 </details>
11191119
1120- 2 . **ParamsParser**: Use ` c.Bind().URL ()` instead of ` c.ParamsParser()` .
1120+ 2 . **ParamsParser**: Use ` c.Bind().URI ()` instead of ` c.ParamsParser()` .
11211121
11221122 <details>
11231123 <summary>Example</summary>
@@ -1137,7 +1137,7 @@ The `Parser` section in Fiber v3 has undergone significant changes to improve fu
11371137 // After
11381138 app.Get("/user/:id", func(c fiber.Ctx) error {
11391139 var params Params
1140- if err := c.Bind().URL (¶ms); err != nil {
1140+ if err := c.Bind().URI (¶ms); err != nil {
11411141 return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{"error": err.Error()})
11421142 }
11431143 return c.JSON(params)
0 commit comments