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
question: "What will be the path if there is an extra option in the route#[Route('/{page}', name: 'index', defaults: ['page' => 1, 'title' => 'Toto'])]"
answers:
- { value: 'The generated route will be /1?title=Toto', correct: true }
- { value: 'Symfony will throw TooManyArgumentException', correct: false }
- { value: 'No effect, the route will be /1', correct: false }
- { value: 'the variable will be accessible in the controller:public function index(int $page, string $title)', correct: true }