Hi. First post here.
I am currently developing an application for a client. We elected to go with Symfony 3 and PHP 7 for the build to give it a longer lifespan. I am currently working with session management and it appears that for some reason Symfony is auto starting the session. I am entirely unsure why it is doing this or where it is being told to. I verified that the session auto start was disabled in php.ini and I have check the YML config files for Symfony.
I tested for this with the following code:
$session = $this->container->get('session')->isStarted();
echo $session;
exit();
It returned a value of 1. What am I missing?