Hello everyone,
I just wanted to get some explanation on the issues i had after upgrading to phalcon 3.0,
i have this code working on my micro phalcon 2.0
$di->set('collections', function(){
return $this->routeLoader();
});
After i have upgraded to phalcon 3.0 it suddently does not worked so i have this as my workaround
$this->collections = $this->routeLoader();
$di->set('collections', $this->collections);
I just wonder why does my previous code not work on phalcon3 than of 2.
Thanks