Start your All-Access Pass to unlock this challenge
Challenge 2 / 2
Given the following controller:
class UserController extends AbstractController
{
#[Route('/user/verify', name: 'user_verify')
public function verify(TranslatorInterface $translator): Response
{
// ...
$this->addFlash('success', $translator->trans('???'));
}
}
What would be a good translation key name for the flash message?
Skip challenges and go to theNext Chapter