I controller i can get $_SESSION['my_var'] ( it was created outside of symfony application, and i need to get it inside symfony controller in symfony way e.g.
$Request->getSession()->get('my_var')
But this code always return NULL and if i use $_SESSION['my_var'] i get my result.
I have found PHPBridgeSessionStorage class but this not work for me, because my session already started.
So question is how can i get it with symfony functions?