12345678910111213141516171819202122 |
- <?php
- namespace Symfony\Component\HttpFoundation\Session;
- use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface;
- interface FlashBagAwareSessionInterface extends SessionInterface
- {
- public function getFlashBag(): FlashBagInterface;
- }
|