Wilmer Arambula

Results 115 comments of 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'...

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...

> ![Снимок экрана от 2024-10-01 16-30-24](https://private-user-images.githubusercontent.com/90403480/372488536-e0c155f9-c869-4dcb-8664-0d16410f8946.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mjc4NTM4OTAsIm5iZiI6MTcyNzg1MzU5MCwicGF0aCI6Ii85MDQwMzQ4MC8zNzI0ODg1MzYtZTBjMTU1ZjktYzg2OS00ZGNiLTg2NjQtMGQxNjQxMGY4OTQ2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDEwMDIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQxMDAyVDA3MTk1MFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTM5ODAxZTEzNTUzODFiMTViNWI2ZWE3ZTYzZTUwNDQ4ZmJmYWNmNjBkMTgxNGY2ZDRlYzg5OTA2ZWZlZTRkNzUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.wKWGjSB2B2sbg0lOrpMam_swZybx7zbjyZkd_mTPy6I) > > That my pslam error It looks like you either have a different version of psalm installed globally, or you have an outdated...