If I create new session adapter or use external session adapter from phalcon incubator I have error without any error messages, when I trying add new value to Session\Bag
class Files extends \Phalcon\Session\Adapter implements \Phalcon\Session\AdapterInterface
{
}
$di = new \Phalcon\Di();
$di->setShared('session', function() {
$session = new Files();
$session->start();
return $session;
});
$bag = new \Phalcon\Session\Bag('test');
$bag->test = 'test';