Welcome Guest, Not a member yet? Register   Sign In
No sessions in testing environment?
#1

Hi,

The code below (system\Session\Session.php) appears to block sessions when your environment is set to testing  Confused

Code:
/**
* Starts the session.
* Extracted for testing reasons.
*/
protected function startSession()
{
  if (ENVIRONMENT === 'testing')
  {
    $_SESSION = [];
    return;
  }

  session_start(); // @codeCoverageIgnore
}
Reply


Messages In This Thread
No sessions in testing environment? - by paulkd - 05-18-2021, 06:29 AM



Theme © iAndrew 2016 - Forum software by © MyBB