Wojciech Ślawski
Wojciech Ślawski
Well i really like this idea, we could even for example create like Entity class without any extends or something which would have all necessary methods, and extend it both...
I think we should consider this more to have better compability with php 7.2 features, what i mean: ```php interface Xyz { public function getName(); } ``` ```php class RowXyz...
Definitely there should be option to implement our own adapter and just switch to any messaging system we want like beanstalkd, redis, rabbitmq, apache kafka etc. Interop looks promising.
Yea that's a good question if we need actually any adapter and built-in queues for phalcon.
Well i will look into it when i have time, but to be honest i created service myself to create/update many to many relation records.
So someone only need to add it to postgresql dialect, quite easy thing to do.
@JABirchall @nejtr0n actually about this user thing, it's already done in phalcon using `Phalcon\Mvc\Model\Binder` and `$dispatcher->setModelBinder()`. There is option to bind model instances to actions already. @Ultimater https://docs.phalconphp.com/en/3.2/dispatcher#preparing-actions-inject-model-instances But i...
Yea laravel doesn't care about performance so it uses all the time reflection api when it's not really needed.
I will actually work on this.
And already added PR with basic concept of it.