12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- namespace Symfony\Component\HttpFoundation\Session\Flash;
- use Symfony\Component\HttpFoundation\Session\SessionBagInterface;
- interface FlashBagInterface extends SessionBagInterface
- {
-
- function set($type, $message);
-
- function peek($type, $default = null);
-
- function peekAll();
-
- function get($type, $default = null);
-
- function all();
-
- function setAll(array $messages);
-
- function has($type);
-
- function keys();
- }
|