raditz
raditz

Reputation: 1

Clear/Delete flash message in SF6

I'd like to delete/clear the FlashBag message container, impossible to find a way, certainly a method clear() with session...

Thx for help.

What I try in my controller :

$this->addFlash('success', 'message1'); $this->addFlash('success', 'message2'); HERE I WANT TO DEL THE 2 LAST $this->addFlash('success', 'message3');

I'd like that only the message 3 is shown.

Upvotes: 0

Views: 77

Answers (1)

raditz
raditz

Reputation: 1

I think I've found the solution:

$request->getSession()->getFlashBag()->clear();

Upvotes: 0

Related Questions