Hi, If we try to integrate phalcon with a standalone library\script which uses its own native $_SESSION what is the best way to transfer the $_SESSION to the Phalcon environment.
We can get this working like below but we think this is probably not a good method to do a session_start()
$session_start();
$di->setShared('session', function() {
    $session = new Phalcon\Session\Adapter\Files();
    $session->start();
    $session->set('test', $_SESSION);
    return $session;
});