You have injected the Request via parameter $request. This is generally not recommended as there might be multiple instances during a request cycle (f.e. when using sub-requests). Instead, it is recommended to inject the RequestStack and retrieve the current request each time you need it via getCurrentRequest().
Loading history...
23
{
24
31
$this->_request = $request;
25
31
}
26
27
/**
28
* Save the state for the given key.
29
*
30
* @param string $key
31
* @param mixed $sessionValue
32
*/
33
2
public function saveState(string $key, $sessionValue)