Just a few easy things to have a cleaner alpha3 release:
- run prettier on YML files
- run twig linter on Twig files
- update module descriptions in info files
- check if all phpunit tests are running
- fix some PHPCS or PHPMD feedbacks
Issue fork ui_patterns-3458364
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
pdureau commentedComment #3
pdureau commentedCan you do the rest?
Especially PHPMD unused local variables:
Mosty of them are caused by the combination between key => value loops and reference:
foreach ($form['grouping'] as $delta_group => &$group) {Comment #6
pdureau commentedthanks.
Why do we have empty methods in src/Plugin/Derivative/EntityFieldSourceDeriverBase.php :
Comment #7
pdureau commentedComment #8
just_like_good_vibesThe Empty methods you have pinpointed are the default behavior for plugin derivers that will derive the class. instead of turning all methods abstract and forcing child classes to define an empty method when not used, i have preferred to set an empty method by default and child classes derive and override the implementation they need.
Comment #10
pdureau commentedThanks, i take the ticket for some linting.
Comment #11
pdureau commentedComment #12
pdureau commentedComment #13
pdureau commentedSome PHPSTAN work to do before merge.
Comment #14
just_like_good_vibesseems ok, i reviewed the changes (without re-tesing the UI)
Comment #15
just_like_good_vibesi just did a few UI tests, seems ok
Comment #17
pdureau commentedComment #18
pdureau commentedComment #19
christian.wiedemann commented