Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[HttpFoundation] FlashbagAwareSessionInterface #41765

Closed
@shyim

Description

@shyim

Description
The current SessionInterface does not contain the method getFlashBag. As the DI way has been deprecated it's difficult to get correctly the FlashBag.

The workaround currently is

// Returns SessionInterface without getFlashBag
$session = $request->getSession();

if (method_exists($session, 'getFlashBag') {
$session->getFlashBag()->fooo();
}

or asserting that is a actual Session object which makes decoration shitty

Example

Introduce an additional interface to access the method getFlashBag on the interface level and not implementation.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions