Commit 60c4c99
authored
Fix request parameter method call in
The method
[`$request->get()`](https://symfony.com/blog/new-in-symfony-7-4-request-class-improvements#deprecated-the-get-method)
was removed in Symfony >= 8. Internal the method used either
`$this->attributes->get()` or `$this->query->get()` or
`$this->request->get()`. In this case we need to call
`$request->query->get()`.GuideController (#46)1 parent dedaa60 commit 60c4c99
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments