With this runtime remember_me is not set. I changed few lines of method reflectSymfonyResponse of SymfonyHttpBridge from:
foreach ($sfResponse->headers->all() as$name => $values) {
foreach ((array) $valuesas$value) {
$response->header((string) $name, $value);
}
}to:
foreach ($sfResponse->headers->all() as$name => $values) {
$response->header((string) $name, $values);
}And it works now.
With this runtime remember_me is not set. I changed few lines of method reflectSymfonyResponse of SymfonyHttpBridge from:
to:
And it works now.