My Silex app uses Sentinel for authentication. How can I fix this error?
PHP Warning: ini_set(): A session is active. You cannot change the session module's ini settings at this time in /home/me/workspace/codeexample/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php on line 56
Silex comes with a Session class from symfony. I would guess Sentinel uses the php session directly $_SESSION. How can I make them both coexist? Or is there a way to use custom session classes with Sentinel?