interface FlashBagAwareSessionInterface
Interface for session with a flashbag.
Hierarchy
- interface \Symfony\Component\HttpFoundation\Session\SessionInterface
- interface \Symfony\Component\HttpFoundation\Session\FlashBagAwareSessionInterface extends \Symfony\Component\HttpFoundation\Session\SessionInterface
Expanded class hierarchy of FlashBagAwareSessionInterface
All classes that implement FlashBagAwareSessionInterface
File
-
vendor/
symfony/ http-foundation/ Session/ FlashBagAwareSessionInterface.php, line 19
Namespace
Symfony\Component\HttpFoundation\SessionView source
interface FlashBagAwareSessionInterface extends SessionInterface {
public function getFlashBag() : FlashBagInterface;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
FlashBagAwareSessionInterface::getFlashBag | public | function | 1 | |
SessionInterface::all | public | function | Returns attributes. | 1 |
SessionInterface::clear | public | function | Clears all attributes. | 1 |
SessionInterface::get | public | function | Returns an attribute. | 1 |
SessionInterface::getBag | public | function | Gets a bag instance by name. | 1 |
SessionInterface::getId | public | function | Returns the session ID. | 1 |
SessionInterface::getMetadataBag | public | function | Gets session meta. | 1 |
SessionInterface::getName | public | function | Returns the session name. | 1 |
SessionInterface::has | public | function | Checks if an attribute is defined. | 1 |
SessionInterface::invalidate | public | function | Invalidates the current session. | 1 |
SessionInterface::isStarted | public | function | Checks if the session was started. | 1 |
SessionInterface::migrate | public | function | Migrates the current session to a new session id while maintaining all session attributes. |
1 |
SessionInterface::registerBag | public | function | Registers a SessionBagInterface with the session. | 1 |
SessionInterface::remove | public | function | Removes an attribute. | 1 |
SessionInterface::replace | public | function | Sets attributes. | 1 |
SessionInterface::save | public | function | Force the session to be saved and closed. | 1 |
SessionInterface::set | public | function | Sets an attribute. | 1 |
SessionInterface::setId | public | function | Sets the session ID. | 1 |
SessionInterface::setName | public | function | Sets the session name. | 1 |
SessionInterface::start | public | function | Starts the session storage. | 1 |