Skip to content

Fix request parameter method call in `GuideController`

Latest

Choose a tag to compare

@FabianSchmick FabianSchmick released this 20 Mar 10:00
60c4c99

The method $request->get() 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().