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
When I tried to launch the homepage "app_web.php" in iteration 3, I got an error when I don't specify a page number. The default value in routing.yml was skipped.
I solved it by changing the regexp "\d*" to "\d+".
I think that's because the first one matches zero or more numbers while the second matches one or more numbers.
The text was updated successfully, but these errors were encountered:
When I tried to launch the homepage "app_web.php" in iteration 3, I got an error when I don't specify a page number. The default value in routing.yml was skipped.
I solved it by changing the regexp "\d*" to "\d+".
I think that's because the first one matches zero or more numbers while the second matches one or more numbers.
The text was updated successfully, but these errors were encountered: