Ben
Ben
What I'd like to see in an app, if I were to make something ideal from scratch, is to be able to edit a file and choose collaborative, real-time read-only,...
Fun fact, CKEditor 5 provides this feature out of the box now and is quite polished.
Note this cached __get is the same in views as well. So when inside a view doing $this->service is not the same as doing $this->getDI()->get('service') when you have updated a...
Sure, I'd appreciate the source for that. I'm currently hacking away in PHP working around broken Phalcon things ... when I'm complete my project I'll be posting items like these...
An update for you: this fixed the issue perfectly for me in both view and controller, just plug and play. Thank you! Hopefully the team gets this fixed in the...
@Bellardia does your code fix the issue for phalcon/cphalcon#3293 as well? In my case it fixed some of my problem, but the __get in a controller still differs from the...
Well in my situation, I've instead created a wrapper as my service that just updates its internal object and automatically forwards all __call, __get, and __set to said internal object...