Hi, i'm trying to use the default Session adapter of phalcon without success... i'm not unable to debug as the service initialization fail silently... anyway i get a Call to undefined method Phalcon\DI\Service::get()
when i try to get a session var via $this->di->session->get("myvar");
Any help?
PS. also, i've tried to investigate the C sources of phalcon diregtly on GitHub but i've not understood where exact implementation of functions are... For example in the Session Adapter i've found this line:
phalcon_session_start(TSRMLS_C);
https://github.com/phalcon/cphalcon/blob/master/ext/session/adapter.c#L114
where phalcon_session_start is implemented?
thanks.