Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix empty session value in Symfony adapter
The mock session handler used within the tests takes the NULL value (if no cookie is present) and sets it as the id. This allows the subsequent check upon response to function correctly. However, when using the native session_id function in production, the NULL value is not returned and `session_id` returns an empty string. So as to meet these requirements we should instead replace NULL with an empty string to signify no session being present.
- Loading branch information