A bridge implementation to combine the IceHawk components Session and Forms.
This package provides one class named AbstractSession that extends the original AbstractSession class from the
IceHawk Session component to combine it with the
IceHawk Forms component.
This bridge package is intended to be used to
- reduce the dependency definitions in the 
composer.json - Add relevant methods to retrieve or unset 
Forminstances 
public function getForm( IdentifiesForm $formId ) : FormThis method returns a new or existing Form instance from the session wrapper an guaranties that you always get the same instance for the same $formId.
public function unsetForm( IdentifiesForm $formId )This method removes an existing Form instance from the session data.
public function unsetAllForms()This method removes all existing Form instances from the session data.
Read more about the IceHawk components Session and Forms in our documentation at icehawk.github.io.
