session storage in database bug (kind of)
I would like to mention that for those of us who store the session data using a PdoSessionHandler the session filesystem won't work.
In this case framework.session.storage_id should be set to session.storage.php_bridge (reference: http://symfony.com/doc/current/cookbook/session/php_bridge.html ).
If I understand correctly this is because Liip uses some deprecated session storage code (see https://github.com/liip/LiipFunctionalTestBundle/issues/80 ). I didn't have time to dig deeper in the Liip code.
In case others try to find the weird exception, when leaving out
storage_id: session.storage.filesystem (i.e. having only handler_id: pdo)
I was getting this exception from the controller I was calling:
Failed to start the session because headers have already been sent by "Project\vendor\phpunit\phpunit\PHPUnit\Util\Printer.php" at line 172.
also, I implemented the session storage as described here http://symfony.com/doc/current/cookbook/configuration/pdo_session_storage.html
interesting on working on a PR to fix #80?
Hmm, yeah, I will only have time to look into it during the weekend.