Wilmer Arambula
Wilmer Arambula
We are waiting for PHP 8.3 to come out, all the Framework updates and all the packages are ready.
It could work. ```php $q1 = (new ActiveQuery())->from('my_table'); $q2 = (new ActiveQuery())->from('my_table'); $q1->andWhere(['id' => 2]); $q2->andWhere(['user_id' => 4]); $unionQuery = (new Query())->from(['u' => $q1->union($q2)])->select('*'); $dataProvider = new ActiveDataProvider( [ 'query'...
If it is a bug, it should be fixed.
Please let me know when it's ready for review.
It looks good at first, some observations. - You can use enums for constants and avoid psalm-suppress, so the user can use them too. - PSALM needs to be fixed....
Yes, the code has improved a lot, some observations. - Add phpdoc to classes and methods. If you don't have any problems i can fix the static analysis and upload...
I think that widgets in the root directory are fine, because we have a shorter namespace, ideally everything that is not a widget can be moved, anyway let's ask for...
If widgets can be used with other widgets, then of course i would rename them, one thing we want to do is replace the array items in all widgets with...
It would be great if we convert `NavItem::widget()` to `Item::widget()`, and add support for icons, template to build in link as we wanted, support for container by link, with these...
>  > > That my pslam error It looks like you either have a different version of psalm installed globally, or you have an outdated...